23 references to SqlByte
System.Data.Common (23)
System\Data\Common\SQLConvert.cs (1)
573
return new
SqlByte
(XmlConvert.ToByte((string)value));
System\Data\SQLTypes\SQLByte.cs (22)
63
return new
SqlByte
(x);
82
return new
SqlByte
(byte.Parse(s, null));
88
return x.IsNull ? Null : new
SqlByte
(unchecked((byte)~x.m_value));
104
return new
SqlByte
((byte)iResult);
116
return new
SqlByte
((byte)iResult);
128
return new
SqlByte
((byte)iResult);
138
return new
SqlByte
((byte)(x.m_value / y.m_value));
151
return new
SqlByte
((byte)(x.m_value % y.m_value));
160
return (x.IsNull || y.IsNull) ? Null : new
SqlByte
((byte)(x.m_value & y.m_value));
165
return (x.IsNull || y.IsNull) ? Null : new
SqlByte
((byte)(x.m_value | y.m_value));
170
return (x.IsNull || y.IsNull) ? Null : new
SqlByte
((byte)(x.m_value ^ y.m_value));
180
return x.IsNull ? Null : new
SqlByte
(x.ByteValue);
189
return x.IsNull ? Null : new
SqlByte
(checked((byte)x.ToInt32()));
201
return x.IsNull ? Null : new
SqlByte
((byte)(x.Value));
213
return x.IsNull ? Null : new
SqlByte
((byte)(x.Value));
225
return x.IsNull ? Null : new
SqlByte
((byte)(x.Value));
237
return x.IsNull ? Null : new
SqlByte
((byte)(x.Value));
249
return x.IsNull ? Null : new
SqlByte
((byte)(x.Value));
262
return x.IsNull ? Null : new
SqlByte
(byte.Parse(x.Value, null));
524
public static readonly SqlByte Zero = new
SqlByte
(0);
525
public static readonly SqlByte MinValue = new
SqlByte
(byte.MinValue);
526
public static readonly SqlByte MaxValue = new
SqlByte
(byte.MaxValue);