2 overrides of ReadContentAsBase64
System.Runtime.Serialization (2)
System\Xml\XmlBaseReader.cs (1)
1402public override byte[] ReadContentAsBase64()
System\Xml\XmlMtomReader.cs (1)
727public override byte[] ReadContentAsBase64()
24 references to ReadContentAsBase64
System.IdentityModel (10)
System\IdentityModel\CipherDataElement.cs (1)
51_cipherText = reader.ReadContentAsBase64();
System\IdentityModel\Tokens\SessionSecurityToken.cs (6)
976byte[] bytes = dictionaryReader.ReadContentAsBase64(); 1647byte[] sidBytes = reader.ReadContentAsBase64(); 1655byte[] sidBytes = reader.ReadContentAsBase64(); 1663byte[] rawData = reader.ReadContentAsBase64(); 1671byte[] thumbprint = reader.ReadContentAsBase64(); 1719byte[] hash = reader.ReadContentAsBase64();
System\IdentityModel\Tokens\WSSecurityJan2004.cs (1)
351bytes = reader.ReadContentAsBase64();
System\IdentityModel\Tokens\XmlEncApr2001.cs (1)
82encryptedKey = reader.ReadContentAsBase64();
System\ServiceModel\Security\EncryptedKey.cs (1)
96this.wrappedKey = reader.ReadContentAsBase64();
System.Runtime.Serialization (3)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
488return dictionaryReader.ReadContentAsBase64();
System\Xml\XmlDictionaryReader.cs (1)
986buffer = ReadContentAsBase64();
System\Xml\XmlMtomReader.cs (1)
730return xmlReader.ReadContentAsBase64();
System.ServiceModel (10)
System\ServiceModel\Security\EncryptedData.cs (1)
54this.cipherText = reader.ReadContentAsBase64();
System\ServiceModel\Security\SctClaimSerializer.cs (6)
237byte[] sidBytes = reader.ReadContentAsBase64(); 245byte[] sidBytes = reader.ReadContentAsBase64(); 253byte[] rawData = reader.ReadContentAsBase64(); 261byte[] thumbprint = reader.ReadContentAsBase64(); 309byte[] hash = reader.ReadContentAsBase64(); 353byte[] rawData = reader.ReadContentAsBase64();
System\ServiceModel\Security\WSSecureConversation.cs (1)
211nonce = reader.ReadContentAsBase64();
System\ServiceModel\Security\XmlHelper.cs (1)
257byte[] value = reader.ReadContentAsBase64();
System\ServiceModel\Transactions\OletxTransactionHeader.cs (1)
197byte[] propagationToken = reader.ReadContentAsBase64();
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\XmlByteStreamReader.cs (1)
175this.base64StringValue = Convert.ToBase64String(ReadContentAsBase64());