9 writes to m_value
System.Data (9)
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (9)
44
m_value
= null;
55
m_value
= null;
57
m_value
= new byte[value.Length];
70
m_value
= null;
72
m_value
= value;
478
m_value
= null;
483
m_value
= new byte[0];
489
m_value
= new byte[0];
492
m_value
= Convert.FromBase64String(base64);
11 references to m_value
System.Data (11)
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (11)
58
value.CopyTo(
m_value
, 0);
83
get { return(
m_value
== null);}
99
byte[] value = new byte[
m_value
.Length];
100
m_value
.CopyTo(value, 0);
112
return
m_value
[index];
125
return
m_value
.Length;
159
return IsNull ? SQLResource.NullString : "SqlBinary(" +
m_value
.Length.ToString(CultureInfo.InvariantCulture) + ")";
458
int cbLen =
m_value
.Length;
459
while (cbLen > 0 &&
m_value
[cbLen - 1] == 0)
462
return HashByteArray(
m_value
, cbLen);
506
writer.WriteString(Convert.ToBase64String(
m_value
));