9 writes to m_value
System.Data.Common (9)
System\Data\SQLTypes\SQLString.cs (9)
92m_value = null; 111m_value = null; 124m_value = s_unicodeEncoding.GetString(data, index, count); 130m_value = cpe.GetString(data, index, count); 172m_value = null; 177m_value = data; 203m_value = null; 208m_value = data; 933m_value = reader.ReadElementString();
18 references to m_value
System.Data.Common (18)
System\Data\SQLTypes\SQLString.cs (18)
233return m_value!; 315return IsNull ? SQLResource.NullString : m_value!; 323return s_unicodeEncoding.GetBytes(m_value!); 335return cpe.GetBytes(m_value!); 358return new SqlString(x.m_lcid, x.m_flag, x.m_value + y.m_value, 391string rgchX = x.m_value!; 392string rgchY = y.m_value!; 403iCmpResult = x.m_cmpInfo!.Compare(x.m_value, 0, cwchX, y.m_value, 0, cwchY, options); 529SqlString ret = new SqlString(m_value!, m_lcid, m_flag); 721byte[] rgDataX = s_unicodeEncoding.GetBytes(x.m_value!); 722byte[] rgDataY = s_unicodeEncoding.GetBytes(y.m_value!); 777string rgDataX = x.m_value!; 778string rgDataY = y.m_value!; 895rgbSortKey = s_unicodeEncoding.GetBytes(m_value!.TrimEnd()); 914rgbSortKey = cmpInfo.GetSortKey(m_value!.TrimEnd(), options).KeyData; 946writer.WriteString(m_value);