3 writes to m_value
System.Data.Common (3)
System\Data\SQLTypes\SQLByte.cs (3)
33
m_value
= 0;
38
m_value
= value;
501
m_value
= XmlConvert.ToByte(reader.ReadElementString());
32 references to m_value
System.Data.Common (32)
System\Data\SQLTypes\SQLByte.cs (32)
54
return
m_value
;
74
return IsNull ? SQLResource.NullString :
m_value
.ToString((IFormatProvider)null!);
88
return x.IsNull ? Null : new SqlByte(unchecked((byte)~x.
m_value
));
100
int iResult = x.
m_value
+ y.
m_value
;
112
int iResult = x.
m_value
- y.
m_value
;
124
int iResult = x.
m_value
* y.
m_value
;
136
if (y.
m_value
!= 0)
138
return new SqlByte((byte)(x.
m_value
/ y.
m_value
));
149
if (y.
m_value
!= 0)
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
));
268
return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.
m_value
== y.
m_value
);
278
return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.
m_value
< y.
m_value
);
283
return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.
m_value
> y.
m_value
);
288
return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.
m_value
<= y.
m_value
);
293
return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.
m_value
>= y.
m_value
);
514
writer.WriteString(XmlConvert.ToString(
m_value
));