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