40 references to ToInt32
mscorlib (8)
microsoft\win32\win32native.cs (3)
346Bias = BitConverter.ToInt32(bytes, 0); 347StandardBias = BitConverter.ToInt32(bytes, 4); 348DaylightBias = BitConverter.ToInt32(bytes, 8);
system\bitconverter.cs (2)
300return (uint)ToInt32(value, startIndex); 331int val = ToInt32(value, startIndex);
system\reflection\emit\dynamicilgenerator.cs (1)
869EHCount = (BitConverter.ToInt32(size, 0) - 4) / 24;
system\security\cryptography\capinative.cs (2)
356return rawProperty.Length == sizeof(int) ? BitConverter.ToInt32(rawProperty, 0) : 0; 393return rawProperty.Length == sizeof(int) ? BitConverter.ToInt32(rawProperty, 0) : 0;
System (1)
net\System\Net\HttpWebRequest.cs (1)
6428ControlChannelTriggerStatus status = (ControlChannelTriggerStatus)BitConverter.ToInt32(outputData, 0);
System.Core (5)
System\Security\Cryptography\BCryptNative.cs (1)
485return BitConverter.ToInt32(GetProperty(algorithm, property), 0);
System\Security\Cryptography\CapiNative.cs (1)
585int keyLength = BitConverter.ToInt32(keyBlob, Marshal.SizeOf(typeof(BLOBHEADER)));
System\Security\Cryptography\NCryptNative.cs (2)
1407return BitConverter.ToInt32(valueBytes, 0); 1874int parameterSize = BitConverter.ToInt32(blob, sizeof(int));
System\Security\Cryptography\RsaCng.cs (1)
244int magic = BitConverter.ToInt32(tempMagic, 0);
System.Data (16)
fx\src\data\System\Data\Odbc\OdbcConnection.cs (3)
385retval = BitConverter.ToInt32(buffer, 0); 419resultValue = BitConverter.ToInt32(buffer, 0); 426return BitConverter.ToInt32(buffer, 0);
fx\src\data\System\Data\ProviderBase\DbBuffer.cs (4)
656buffer[0] = BitConverter.ToInt32(bits, 4); // low 657buffer[1] = BitConverter.ToInt32(bits, 8); // mid 658buffer[2] = BitConverter.ToInt32(bits, 12); // high 659if (0 != BitConverter.ToInt32(bits, 16)) {
fx\src\data\System\Data\Sql\sqlnorm.cs (1)
410SetValue(fi, recvr, BitConverter.ToInt32(b, 0));
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
2513len = BitConverter.ToInt32(data, i); i += 4;
fx\src\data\System\Data\SqlClient\TdsParser.cs (3)
5129mid = BitConverter.ToInt32(unencryptedBytes, 0); 5163daypart = BitConverter.ToInt32(unencryptedBytes, 0); 5208bits[i] = BitConverter.ToInt32(unencryptedBytes, index);
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (4)
1121_outBytesUsed == (_outputHeaderLen + BitConverter.ToInt32(_outBuff, _outputHeaderLen)) && 1369value = BitConverter.ToInt32(_bTmp, 0); 1376value = BitConverter.ToInt32(_inBuff, _inBytesUsed); 2816&& _outBytesUsed == (_outputHeaderLen + BitConverter.ToInt32(_outBuff, _outputHeaderLen))
System.Drawing (2)
commonui\System\Drawing\Icon.cs (2)
1119int iconSignature1 = BitConverter.ToInt32(iconData, bestImageOffset); 1120int iconSignature2 = BitConverter.ToInt32(iconData, bestImageOffset + 4);
System.IdentityModel (1)
System\IdentityModel\RsaSignatureCookieTransform.cs (1)
164Int32 signatureLength = BitConverter.ToInt32(encoded, currentIndex);
System.Messaging (2)
System\Messaging\ActiveXMessageFormatter.cs (1)
198return BitConverter.ToInt32(bytes, 0);
System\Messaging\Message.cs (1)
2352int id = BitConverter.ToInt32(bytes, GenericIdSize);
System.ServiceModel (2)
System\ServiceModel\Channels\NativeMsmqMessage.cs (1)
521int id = BitConverter.ToInt32(messageId, guidSize);
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (1)
180return BitConverter.ToInt32(bytes, 0);
System.Web (2)
Security\AnonymousIdentificationModule.cs (1)
367int len = BitConverter.ToInt32(bBlob, 8);
UI\EventValidationStore.cs (1)
159return BitConverter.ToInt32(obj, 0);
WindowsBase (1)
Base\System\Security\RightsManagement\CryptoProvider.cs (1)
452return BitConverter.ToInt32(dataBuffer,0);