Base:
method
GetBytes
System.Data.Common.DbDataReader.GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)
Implemented interface member:
method
GetBytes
System.Data.IDataRecord.GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)
1 override of GetBytes
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (1)
214
public override long
GetBytes
(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) {
13 references to GetBytes
System.Data (9)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (7)
3865
int encryptedKeyLength = (int)ds.
GetBytes
((int)DescribeParameterEncryptionResultSet1.EncryptedKey, 0, encryptedKey, 0, 0);
3867
ds.
GetBytes
((int)DescribeParameterEncryptionResultSet1.EncryptedKey, 0, encryptedKey, 0, encryptedKeyLength);
3872
ds.
GetBytes
((int)DescribeParameterEncryptionResultSet1.KeyMdVersion, 0, keyMdVersion, 0, keyMdVersion.Length);
3917
int keySignatureLength = (int) ds.
GetBytes
((int) DescribeParameterEncryptionResultSet1.KeySignature, 0, keySignature, 0, 0);
3919
ds.
GetBytes
((int) DescribeParameterEncryptionResultSet1.KeySignature, 0, keySignature, 0, keySignatureLength);
4058
int attestationInfoLength = (int)ds.
GetBytes
((int)DescribeParameterEncryptionResultSet3.AttestationInfo, 0, null, 0, 0);
4060
ds.
GetBytes
((int)DescribeParameterEncryptionResultSet3.AttestationInfo, 0, attestationInfo, 0, attestationInfoLength);
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
7660
long dtcLength = dtcReader.
GetBytes
(0, 0, null, 0, 0);
7667
dtcReader.
GetBytes
(0, 0, dtcAddr, 0, cb);
System.Web (4)
Profile\SqlProfileProvider.cs (2)
176
int size = (int)reader.
GetBytes
(2, 0, null, 0, 0);
179
reader.
GetBytes
(2, 0, buf, 0, size);
UI\WebParts\SqlPersonalizationProvider.cs (2)
528
int length = (int)reader.
GetBytes
(0, 0, null, 0, 0);
531
reader.
GetBytes
(0, 0, state, 0, length);