27 references to SqlByte
System.Data (27)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
340return new SqlByte( GetByte_Unchecked( sink, getters, ordinal ) ); 1056result = new SqlByte( GetByte_Unchecked( sink, getters, ordinal ) );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
628return new SqlByte(XmlConvert.ToByte((string)value));
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
460return new SqlByte(_value._byte);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
511sqlVal = new SqlByte((byte)comVal);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (22)
95return new SqlByte(x); 120return new SqlByte(Byte.Parse(s, (IFormatProvider)null)); 128return x.IsNull ? Null : new SqlByte((byte)~x.m_value); 146return new SqlByte((byte)iResult); 160return new SqlByte((byte)iResult); 174return new SqlByte((byte)iResult); 185return new SqlByte((byte)(x.m_value / y.m_value)); 199return new SqlByte((byte)(x.m_value % y.m_value)); 210return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value & y.m_value)); 217return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value | y.m_value)); 224return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value ^ y.m_value)); 236return x.IsNull ? Null : new SqlByte((byte)(x.ByteValue)); 247return x.IsNull ? Null : new SqlByte(checked((byte)x.ToInt32())); 261return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 275return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 289return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 303return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 317return x.IsNull ? Null : new SqlByte((byte)(x.Value)); 334return x.IsNull ? Null : new SqlByte(Byte.Parse(x.Value, (IFormatProvider)null)); 607public static readonly SqlByte Zero = new SqlByte(0); 611public static readonly SqlByte MinValue = new SqlByte(Byte.MinValue); 615public static readonly SqlByte MaxValue = new SqlByte(Byte.MaxValue);