9 writes to m_value
System.Data (9)
fx\src\data\System\Data\SQLTypes\SQLString.cs (9)
115
m_value
= null;
134
m_value
= null;
145
m_value
= x_UnicodeEncoding.GetString(data, index, count);
150
m_value
= cpe.GetString(data, index, count);
216
m_value
= null;
220
m_value
= data; // PERF: do not String.Copy
246
m_value
= null;
250
m_value
= data;
1013
m_value
= reader.ReadElementString();
18 references to m_value
System.Data (18)
fx\src\data\System\Data\SQLTypes\SQLString.cs (18)
276
return
m_value
;
360
return IsNull ? SQLResource.NullString :
m_value
;
370
return x_UnicodeEncoding.GetBytes(
m_value
);
384
return cpe.GetBytes(
m_value
);
409
return new SqlString(x.m_lcid, x.m_flag, x.
m_value
+ y.
m_value
,
441
string rgchX = x.
m_value
;
442
string rgchY = y.
m_value
;
453
iCmpResult = x.m_cmpInfo.Compare(x.
m_value
, 0, cwchX, y.
m_value
, 0, cwchY, options);
601
SqlString ret = new SqlString(
m_value
, m_lcid, m_flag);
802
byte[] rgDataX = x_UnicodeEncoding.GetBytes(x.
m_value
);
803
byte[] rgDataY = x_UnicodeEncoding.GetBytes(y.
m_value
);
852
string rgDataX = x.
m_value
;
853
string rgDataY = y.
m_value
;
973
rgbSortKey = x_UnicodeEncoding.GetBytes(
m_value
.TrimEnd());
991
rgbSortKey = cmpInfo.GetSortKey(
m_value
.TrimEnd(), options).KeyData;
1026
writer.WriteString(
m_value
);