10 overrides of WriteBase64
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
245public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlRawWriter.cs (1)
92public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextWriter.cs (1)
906public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1206public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
174public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
91public override void WriteBase64(byte[] buffer, int index, int count) { _xmlWriter.WriteBase64(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
1421public override void WriteBase64(byte[] buffer, int offset, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
102public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
626public override void WriteBase64(byte[] buffer, int index, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
44public override void WriteBase64(byte[] buffer, int index, int count)
24 references to WriteBase64
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (2)
248_wrapped.WriteBase64(buffer, index, count); 250_wrapped.WriteBase64(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEventCache.cs (1)
186writer.WriteBase64(bytes, 0, bytes.Length);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1228_writer.WriteBase64(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
176writer.WriteBase64(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCustomFormatter.cs (1)
122writer.WriteBase64(inData, start, count);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
91public override void WriteBase64(byte[] buffer, int index, int count) { _xmlWriter.WriteBase64(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (1)
489writer.WriteBase64(bytes, 0, bytes.Length);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
105CoreWriter.WriteBase64(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
628_writer.WriteBase64(buffer, index, count);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityJan2004.cs (1)
311writer.WriteBase64(keyIdentifier, 0, keyIdentifier.Length);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\XmlEncApr2001.cs (1)
130writer.WriteBase64(encryptedKey, 0, encryptedKey.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
46this.Writer.WriteBase64(buffer, index, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (1)
813writer.WriteBase64(arrayValue, 0, arrayValue.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (2)
388writer.WriteBase64(block, 0, bytesRead); 425writer.WriteBase64(block, 0, bytesRead);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\BinaryNegotiation.cs (1)
70writer.WriteBase64(_negotiationData, 0, _negotiationData.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedData.cs (2)
95writer.WriteBase64(_iv, 0, _iv.Length); 96writer.WriteBase64(_cipherText, 0, _cipherText.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedType.cs (1)
131writer.WriteBase64(_wrappedKey, 0, _wrappedKey.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityVersion.cs (1)
276writer.WriteBase64(signature, 0, signature.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecureConversation.cs (2)
298writer.WriteBase64(derivedKeyToken.Nonce, 0, derivedKeyToken.Nonce.Length); 441writer.WriteBase64(sct.CookieBlob, 0, sct.CookieBlob.Length);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (1)
148writer.WriteBase64(rawData, 0, rawData.Length);