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