7 references to MAXSIZE
System.Data (7)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
33
const int __maxByteChunkSize = TdsEnums.
MAXSIZE
;
34
const int __maxCharChunkSize = TdsEnums.
MAXSIZE
/ sizeof(char);
fx\src\data\System\Data\SqlClient\SqlCommand.cs (2)
5856
size = mt.IsSizeInCharacters ? (TdsEnums.
MAXSIZE
>> 1) : TdsEnums.
MAXSIZE
;
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
308
if ( length > TdsEnums.
MAXSIZE
) {
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
5182
Debug.Assert(length <= TdsEnums.
MAXSIZE
, "Plp data decryption attempted");
5617
Debug.Assert(length <= TdsEnums.
MAXSIZE
);