4 types derived from XmlDictionaryWriter
dotnet-svcutil-lib (4)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
18internal abstract class XmlBaseWriter : XmlDictionaryWriter
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
15internal class XmlDictionaryAsyncCheckWriter : XmlDictionaryWriter
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
594private class XmlWrappedWriter : XmlDictionaryWriter
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
25internal abstract class WriteFilter : XmlDictionaryWriter
381 references to XmlDictionaryWriter
dotnet-svcutil-lib (381)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSerializer.cs (3)
255public override void WriteStartObject(XmlDictionaryWriter writer, object graph) 260public override void WriteObjectContent(XmlDictionaryWriter writer, object graph) 265public override void WriteEndObject(XmlDictionaryWriter writer)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializer.cs (10)
19public abstract void WriteStartObject(XmlDictionaryWriter writer, object graph); 20public abstract void WriteObjectContent(XmlDictionaryWriter writer, object graph); 21public abstract void WriteEndObject(XmlDictionaryWriter writer); 26XmlDictionaryWriter writer = XmlDictionaryWriter.CreateTextWriter(stream, Encoding.UTF8, false /*ownsStream*/); 34WriteObject(XmlDictionaryWriter.CreateDictionaryWriter(writer), graph); 40WriteStartObject(XmlDictionaryWriter.CreateDictionaryWriter(writer), graph); 46WriteObjectContent(XmlDictionaryWriter.CreateDictionaryWriter(writer), graph); 52WriteEndObject(XmlDictionaryWriter.CreateDictionaryWriter(writer)); 55public virtual void WriteObject(XmlDictionaryWriter writer, object graph)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (2)
18protected XmlDictionaryWriter dictionaryWriter; 26this.dictionaryWriter = writer as XmlDictionaryWriter;
FrameworkFork\System.Runtime.Serialization\System\Xml\ArrayHelper.cs (22)
62public void WriteArray(XmlDictionaryWriter writer, string prefix, TArgument localName, TArgument namespaceUri, XmlDictionaryReader reader) 80protected abstract void WriteArray(XmlDictionaryWriter writer, string prefix, TArgument localName, TArgument namespaceUri, TArray[] array, int offset, int count); 107protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, bool[] array, int offset, int count) 122protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, bool[] array, int offset, int count) 137protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, Int16[] array, int offset, int count) 152protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, Int16[] array, int offset, int count) 167protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, Int32[] array, int offset, int count) 182protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, Int32[] array, int offset, int count) 197protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, Int64[] array, int offset, int count) 212protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, Int64[] array, int offset, int count) 227protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, float[] array, int offset, int count) 242protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, float[] array, int offset, int count) 257protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, double[] array, int offset, int count) 272protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, double[] array, int offset, int count) 287protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, decimal[] array, int offset, int count) 302protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, decimal[] array, int offset, int count) 317protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, DateTime[] array, int offset, int count) 332protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, DateTime[] array, int offset, int count) 347protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, Guid[] array, int offset, int count) 362protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, Guid[] array, int offset, int count) 377protected override void WriteArray(XmlDictionaryWriter writer, string prefix, string localName, string namespaceUri, TimeSpan[] array, int offset, int count) 392protected override void WriteArray(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, TimeSpan[] array, int offset, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (3)
17private readonly XmlDictionaryWriter _coreWriter = null; 20public XmlDictionaryAsyncCheckWriter(XmlDictionaryWriter writer) 25internal XmlDictionaryWriter CoreWriter
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (10)
21static public XmlDictionaryWriter CreateBinaryWriter(Stream stream) 26static public XmlDictionaryWriter CreateBinaryWriter(Stream stream, IXmlDictionary dictionary) 31static public XmlDictionaryWriter CreateBinaryWriter(Stream stream, IXmlDictionary dictionary, XmlBinaryWriterSession session) 36static public XmlDictionaryWriter CreateBinaryWriter(Stream stream, IXmlDictionary dictionary, XmlBinaryWriterSession session, bool ownsStream) 44static public XmlDictionaryWriter CreateTextWriter(Stream stream) 49static public XmlDictionaryWriter CreateTextWriter(Stream stream, Encoding encoding) 54static public XmlDictionaryWriter CreateTextWriter(Stream stream, Encoding encoding, bool ownsStream) 62static public XmlDictionaryWriter CreateDictionaryWriter(XmlWriter writer) 67XmlDictionaryWriter dictionaryWriter = writer as XmlDictionaryWriter;
FrameworkFork\System.ServiceModel\System\IdentityModel\ISecurityElement.cs (1)
15void WriteTo(XmlDictionaryWriter writer, DictionaryManager dictionaryManager);
FrameworkFork\System.ServiceModel\System\IdentityModel\Security\WSTrust.cs (2)
114public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 154public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\SecurityTokenSerializer.cs (3)
172public abstract void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause); 182public abstract void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause); 207public abstract void WriteKeyIdentifierCore(XmlDictionaryWriter writer, SecurityKeyIdentifier keyIdentifier);
FrameworkFork\System.ServiceModel\System\IdentityModel\SignedXml.cs (1)
34public void WriteTo(XmlDictionaryWriter writer, DictionaryManager dictionaryManager)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\KeyInfoSerializer.cs (4)
199XmlDictionaryWriter localWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer); 289XmlDictionaryWriter localWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityJan2004.cs (8)
244public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 296public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 346public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 441public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 499public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 550public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 582public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 628public override void WriteIdAttribute(XmlDictionaryWriter writer, string id)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityXXX2005.cs (2)
68public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 216public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\XmlDsigSep2000.cs (4)
71public override void WriteKeyIdentifierCore(XmlDictionaryWriter writer, SecurityKeyIdentifier keyIdentifier) 106public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 147public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 188public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\XmlEncApr2001.cs (1)
103public override void WriteKeyIdentifierClauseCore(XmlDictionaryWriter writer, SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AddressHeader.cs (16)
125XmlDictionaryWriter writer = buffer.OpenSection(XmlDictionaryReaderQuotas.Max); 137protected virtual void OnWriteStartAddressHeader(XmlDictionaryWriter writer) 142protected abstract void OnWriteAddressHeaderContents(XmlDictionaryWriter writer); 153WriteAddressHeader(XmlDictionaryWriter.CreateDictionaryWriter(writer)); 156public void WriteAddressHeader(XmlDictionaryWriter writer) 165public void WriteStartAddressHeader(XmlDictionaryWriter writer) 172public void WriteAddressHeaderContents(XmlDictionaryWriter writer) 203protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 211protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 216internal static void WriteStartHeader(XmlDictionaryWriter writer, AddressHeader parameter, AddressingVersion addressingVersion) 225internal static void WriteHeaderContents(XmlDictionaryWriter writer, AddressHeader parameter) 274protected override void OnWriteAddressHeaderContents(XmlDictionaryWriter writer) 295protected override void OnWriteStartAddressHeader(XmlDictionaryWriter writer) 312XmlDictionaryWriter writer = _buffer.OpenSection(reader.Quotas); 347protected override void OnWriteStartAddressHeader(XmlDictionaryWriter writer) 355protected override void OnWriteAddressHeaderContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AddressHeaderCollection.cs (3)
211internal void WriteReferencePropertyContentsTo(XmlDictionaryWriter writer) 218internal void WriteNonReferencePropertyContentsTo(XmlDictionaryWriter writer) 225internal void WriteContentsTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Addressing.cs (11)
84protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 125protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 197protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 280protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 424protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 485protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 501protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 585protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 685protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 801protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 882protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (8)
143private XmlDictionaryWriter TakeStreamedWriter(Stream stream) 145return XmlDictionaryWriter.CreateBinaryWriter(stream, _binaryVersion.Dictionary, null, false); 148private void ReturnStreamedWriter(XmlDictionaryWriter xmlWriter) 292protected override XmlDictionaryWriter TakeXmlWriter(Stream stream) 294return XmlDictionaryWriter.CreateBinaryWriter(stream, _dictionary, _session, false); 297protected override void ReturnXmlWriter(XmlDictionaryWriter writer) 751XmlDictionaryWriter xmlWriter = _factory.TakeStreamedWriter(stream); 1597protected override void OnBodyToString(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BodyWriter.cs (9)
73using (XmlDictionaryWriter writer = buffer.OpenSection(quotas)) 84protected abstract void OnWriteBodyContents(XmlDictionaryWriter writer); 86protected virtual Task OnWriteBodyContentsAsync(XmlDictionaryWriter writer) 92protected virtual IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 102private void EnsureWriteBodyContentsState(XmlDictionaryWriter writer) 117public void WriteBodyContents(XmlDictionaryWriter writer) 123internal Task WriteBodyContentsAsync(XmlDictionaryWriter writer) 129public IAsyncResult BeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 150protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedMessageWriter.cs (5)
24protected abstract XmlDictionaryWriter TakeXmlWriter(Stream stream); 25protected abstract void ReturnXmlWriter(XmlDictionaryWriter writer); 49XmlDictionaryWriter writer = TakeXmlWriter(_stream); 66protected virtual void OnWriteStartMessage(XmlDictionaryWriter writer) 70protected virtual void OnWriteEndMessage(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContentOnlyMessage.cs (2)
62protected override void OnBodyToString(XmlDictionaryWriter writer) 86protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (56)
66internal void BodyToString(XmlDictionaryWriter writer) 264XmlDictionaryWriter writer = buffer.OpenSection(XmlDictionaryReaderQuotas.Max); 321protected virtual void OnBodyToString(XmlDictionaryWriter writer) 334XmlDictionaryWriter writer = msgBuffer.OpenSection(quotas); 348XmlDictionaryWriter writer = bodyBuffer.OpenSection(XmlDictionaryReaderQuotas.Max); 372protected virtual void OnWriteStartBody(XmlDictionaryWriter writer) 378public void WriteBodyContents(XmlDictionaryWriter writer) 384public Task WriteBodyContentsAsync(XmlDictionaryWriter writer) 390public IAsyncResult BeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 401protected abstract void OnWriteBodyContents(XmlDictionaryWriter writer); 403protected virtual Task OnWriteBodyContentsAsync(XmlDictionaryWriter writer) 409protected virtual IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 419public void WriteStartEnvelope(XmlDictionaryWriter writer) 427protected virtual void OnWriteStartEnvelope(XmlDictionaryWriter writer) 438protected virtual void OnWriteStartHeaders(XmlDictionaryWriter writer) 463using (XmlDictionaryWriter writer = XmlDictionaryWriter.CreateDictionaryWriter(textWriter)) 480internal void ToString(XmlDictionaryWriter writer) 595WriteBody(XmlDictionaryWriter.CreateDictionaryWriter(writer)); 598public void WriteBody(XmlDictionaryWriter writer) 607WriteStartBody(XmlDictionaryWriter.CreateDictionaryWriter(writer)); 610public void WriteStartBody(XmlDictionaryWriter writer) 617internal void WriteStartHeaders(XmlDictionaryWriter writer) 624WriteMessage(XmlDictionaryWriter.CreateDictionaryWriter(writer)); 627public void WriteMessage(XmlDictionaryWriter writer) 639public virtual async Task WriteMessageAsync(XmlDictionaryWriter writer) 645public virtual async Task OnWriteMessageAsync(XmlDictionaryWriter writer) 656private void EnsureWriteMessageState(XmlDictionaryWriter writer) 680public IAsyncResult BeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 692protected virtual void OnWriteMessage(XmlDictionaryWriter writer) 699internal void WriteMessagePreamble(XmlDictionaryWriter writer) 721internal void WriteMessagePostamble(XmlDictionaryWriter writer) 730protected virtual IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 740private void WriteSharedHeaderPrefixes(XmlDictionaryWriter writer) 783private XmlDictionaryWriter _writer; 785public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, Message message, AsyncCallback callback, object state) 827protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 849protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 872protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 909protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 1059protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 1064protected override Task OnWriteBodyContentsAsync(XmlDictionaryWriter writer) 1069protected override IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 1081protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 1091protected override void OnBodyToString(XmlDictionaryWriter writer) 1114private XmlDictionaryWriter _writer; 1116public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, BodyWriterMessage message, AsyncCallback callback, object state) 1171protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 1312protected override void OnBodyToString(XmlDictionaryWriter writer) 1376protected override void OnWriteStartBody(XmlDictionaryWriter writer) 1382protected override void OnWriteStartEnvelope(XmlDictionaryWriter writer) 1389protected override void OnWriteStartHeaders(XmlDictionaryWriter writer) 1583protected override void OnBodyToString(XmlDictionaryWriter writer) 1665protected override void OnWriteStartEnvelope(XmlDictionaryWriter writer) 1676protected override void OnWriteStartHeaders(XmlDictionaryWriter writer) 1695protected override void OnWriteStartBody(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageBuffer.cs (2)
29XmlDictionaryWriter writer = XmlDictionaryWriter.CreateBinaryWriter(stream, XD.Dictionary, null, false);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (17)
188protected virtual void OnWriteDetail(XmlDictionaryWriter writer, EnvelopeVersion version) 195protected virtual void OnWriteStartDetail(XmlDictionaryWriter writer, EnvelopeVersion version) 205protected abstract void OnWriteDetailContents(XmlDictionaryWriter writer); 210XmlDictionaryWriter writer = detailBuffer.OpenSection(XmlDictionaryReaderQuotas.Max); 256WriteTo(XmlDictionaryWriter.CreateDictionaryWriter(writer), version); 259public void WriteTo(XmlDictionaryWriter writer, EnvelopeVersion version) 289private void WriteToNone(XmlDictionaryWriter writer) 294private void WriteTo12Driver(XmlDictionaryWriter writer, EnvelopeVersion version) 322private void WriteFaultCode12Driver(XmlDictionaryWriter writer, FaultCode faultCode, EnvelopeVersion version) 351private void WriteTo12(XmlDictionaryWriter writer) 356private void WriteTo11(XmlDictionaryWriter writer) 465protected override void OnWriteDetailContents(XmlDictionaryWriter writer) 551protected override void OnWriteDetail(XmlDictionaryWriter writer, EnvelopeVersion version) 579protected override void OnWriteStartDetail(XmlDictionaryWriter writer, EnvelopeVersion version) 597protected override void OnWriteDetailContents(XmlDictionaryWriter writer) 663XmlDictionaryWriter writer = detail.OpenSection(reader.Quotas); 725XmlDictionaryWriter writer = detail.OpenSection(reader.Quotas);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeader.cs (14)
59using (XmlDictionaryWriter writer = XmlDictionaryWriter.CreateDictionaryWriter(textWriter)) 91WriteHeader(XmlDictionaryWriter.CreateDictionaryWriter(writer), messageVersion); 94public void WriteHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 105public void WriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 114protected virtual void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 120public void WriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 129protected abstract void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion); 131protected void WriteHeaderAttributes(XmlDictionaryWriter writer, MessageVersion messageVersion) 291protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 422protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 441protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 451protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) 518XmlDictionaryWriter writer = buffer.OpenSection(reader.Quotas);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeaders.cs (9)
442XmlDictionaryWriter writer = buffer.OpenSection(_bufferedMessageData.Quotas); 452XmlDictionaryWriter writer = buffer.OpenSection(bufferedMessageData.Quotas); 462XmlDictionaryWriter writer = buffer.OpenSection(XmlDictionaryReaderQuotas.Max); 1557WriteHeader(headerIndex, XmlDictionaryWriter.CreateDictionaryWriter(writer)); 1560public void WriteHeader(int headerIndex, XmlDictionaryWriter writer) 1569WriteStartHeader(headerIndex, XmlDictionaryWriter.CreateDictionaryWriter(writer)); 1572public void WriteStartHeader(int headerIndex, XmlDictionaryWriter writer) 1601WriteHeaderContents(headerIndex, XmlDictionaryWriter.CreateDictionaryWriter(writer)); 1604public void WriteHeaderContents(int headerIndex, XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncoder.cs (10)
538XmlDictionaryWriter xmlWriter = TakeStreamedWriter(stream); 573private XmlDictionaryWriter TakeStreamedWriter(Stream stream) 575return XmlDictionaryWriter.CreateTextWriter(stream, _writeEncoding, false); 621private XmlDictionaryWriter CreateWriter(Stream stream) 623return XmlDictionaryWriter.CreateTextWriter(stream, _writeEncoding, false); 736protected override void OnWriteStartMessage(XmlDictionaryWriter writer) 742protected override void OnWriteEndMessage(XmlDictionaryWriter writer) 748protected override XmlDictionaryWriter TakeXmlWriter(Stream stream) 752return XmlDictionaryWriter.CreateTextWriter(stream, _messageEncoder._writeEncoding, false); 760protected override void ReturnXmlWriter(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\ActivityIdHeader.cs (1)
119protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (5)
188protected override void SerializeBody(XmlDictionaryWriter writer, MessageVersion version, string action, MessageDescription messageDescription, object returnValue, object[] parameters, bool isRequest) 207private void SerializeParameters(XmlDictionaryWriter writer, PartInfo[] parts, object[] parameters) 217private void SerializeParameter(XmlDictionaryWriter writer, PartInfo part, object graph) 231private void SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, object graph) 481protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (16)
49protected abstract void SerializeBody(XmlDictionaryWriter writer, MessageVersion version, string action, MessageDescription messageDescription, object returnValue, object[] parameters, bool isRequest); 50protected virtual Task SerializeBodyAsync(XmlDictionaryWriter writer, MessageVersion version, string action, MessageDescription messageDescription, object returnValue, object[] parameters, bool isRequest) 59protected virtual void WriteBodyAttributes(XmlDictionaryWriter writer, MessageVersion messageVersion) 337private void SerializeBodyContents(XmlDictionaryWriter writer, MessageVersion version, object[] parameters, object returnValue, bool isRequest) 353private async Task SerializeBodyContentsAsync(XmlDictionaryWriter writer, MessageVersion version, object[] parameters, object returnValue, bool isRequest) 370private IAsyncResult BeginSerializeBodyContents(XmlDictionaryWriter writer, MessageVersion version, object[] parameters, object returnValue, bool isRequest, 387internal SerializeBodyContentsAsyncResult(OperationFormatter operationFormatter, XmlDictionaryWriter writer, MessageVersion version, object[] parameters, 665protected override void OnWriteStartBody(XmlDictionaryWriter writer) 718protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 726protected override Task OnWriteBodyContentsAsync(XmlDictionaryWriter writer) 731protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 754internal OnWriteBodyContentsAsyncResult(OperationFormatterBodyWriter operationFormatterBodyWriter, XmlDictionaryWriter writer, AsyncCallback callback, object state) 856protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 863protected virtual void OnWriteHeaderAttributes(XmlDictionaryWriter writer, MessageVersion messageVersion) 878protected override void OnWriteHeaderAttributes(XmlDictionaryWriter writer, MessageVersion messageVersion) 883protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (7)
568private void SerializeParameter(XmlDictionaryWriter writer, PartInfo part, object graph) 582private void SerializeParameters(XmlDictionaryWriter writer, PartInfo[] parts, object[] parameters) 596private void SerializeRequest(XmlDictionaryWriter writer, object[] parameters) 607private void SerializeResponse(XmlDictionaryWriter writer, object returnValue, object[] parameters) 804public void WriteValue(XmlDictionaryWriter writer, object value) 909protected override void OnWriteBodyContents(XmlDictionaryWriter writer) 930protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (9)
50internal void Serialize(XmlDictionaryWriter writer, object[] parameters, object returnValue) 58private Stream GetStreamAndWriteStartWrapperIfNecessary(XmlDictionaryWriter writer, object[] parameters, object returnValue) 69private void WriteEndWrapperIfNecessary(XmlDictionaryWriter writer) 76private Task WriteEndWrapperIfNecessaryAsync(XmlDictionaryWriter writer) 84internal IAsyncResult BeginSerialize(XmlDictionaryWriter writer, object[] parameters, object returnValue, AsyncCallback callback, object state) 99private XmlDictionaryWriter _writer; 101internal SerializeAsyncResult(StreamFormatter streamFormatter, XmlDictionaryWriter writer, object[] parameters, object returnValue, 369public static void WriteValue(XmlDictionaryWriter writer, OperationStreamProvider value) 405public static async Task WriteValueAsync(XmlDictionaryWriter writer, OperationStreamProvider value)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (4)
72public override void WriteObject(XmlDictionaryWriter writer, object graph) 80public override void WriteStartObject(XmlDictionaryWriter writer, object graph) 85public override void WriteObjectContent(XmlDictionaryWriter writer, object graph) 90public override void WriteEndObject(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (8)
83XmlDictionaryWriter bufferWriter = XmlDictionaryWriter.CreateTextWriter(memoryStream); 171XmlDictionaryWriter bufferWriter = XmlDictionaryWriter.CreateTextWriter(memoryStream); 244private static void AddUnknownHeader(MessageHeaderDescription unknownHeaderDescription, ArrayList unknownHeaders, XmlDocument xmlDoc, XmlDictionaryWriter bufferWriter, MessageHeaderInfo header, XmlDictionaryReader headerReader) 255protected override void WriteBodyAttributes(XmlDictionaryWriter writer, MessageVersion version) 261protected override void SerializeBody(XmlDictionaryWriter writer, MessageVersion version, string action, MessageDescription messageDescription, object returnValue, object[] parameters, bool isRequest) 305private void SerializeBody(XmlDictionaryWriter writer, MessageVersion version, XmlSerializer serializer, MessagePartDescription returnPart, MessagePartDescriptionCollection bodyParts, object returnValue, object[] parameters)
FrameworkFork\System.ServiceModel\System\ServiceModel\DnsEndpointIdentity.cs (1)
34internal override void WriteContentsTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (15)
530XmlDictionaryWriter writer = buffer.OpenSection(reader.Quotas); 704XmlDictionaryWriter bufferWriter = null; 794XmlDictionaryWriter bufferWriter = null; 930XmlDictionaryWriter writer = buffer.OpenSection(reader.Quotas); 991static internal void Copy(XmlDictionaryWriter writer, XmlDictionaryReader reader) 1004public void WriteContentsTo(AddressingVersion addressingVersion, XmlDictionaryWriter writer) 1035private void WriteContentsToNone(XmlDictionaryWriter writer) 1040private void WriteContentsTo200408(XmlDictionaryWriter writer) 1112private void WriteContentsTo10(XmlDictionaryWriter writer) 1171XmlDictionaryWriter dictionaryWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer); 1175public void WriteTo(AddressingVersion addressingVersion, XmlDictionaryWriter writer) 1181public void WriteTo(AddressingVersion addressingVersion, XmlDictionaryWriter writer, XmlDictionaryString localName, XmlDictionaryString ns) 1212WriteTo(addressingVersion, XmlDictionaryWriter.CreateDictionaryWriter(writer), 1337XmlDictionaryWriter writer = _metadataBuffer.OpenSection(reader.Quotas);
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointIdentity.cs (2)
168internal void WriteTo(XmlDictionaryWriter writer) 180internal virtual void WriteContentsTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\MustUnderstandSoapException.cs (2)
74protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 83protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\BinaryNegotiation.cs (1)
58public void WriteTo(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString ns, XmlDictionaryString valueTypeLocalName, XmlDictionaryString valueTypeNs)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedData.cs (1)
93protected override void WriteCipherData(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedKey.cs (5)
278protected virtual void WriteAdditionalAttributes(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 282protected virtual void WriteAdditionalElements(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 286protected abstract void WriteCipherData(XmlDictionaryWriter writer); 288public void WriteTo(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 394public void WriteTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedType.cs (3)
107protected override void WriteAdditionalAttributes(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 115protected override void WriteAdditionalElements(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 129protected override void WriteCipherData(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
33protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ReferenceList.cs (2)
99public void WriteTo(XmlDictionaryWriter writer, DictionaryManager dictionaryManager) 130public static void WriteTo(XmlDictionaryWriter writer, string referredId)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityToken.cs (3)
498using (XmlDictionaryWriter binaryWriter = XmlDictionaryWriter.CreateBinaryWriter(stream, XD.Dictionary)) 555protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityTokenResponse.cs (3)
509using (XmlDictionaryWriter binaryWriter = XmlDictionaryWriter.CreateBinaryWriter(stream, XD.Dictionary)) 546protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityTokenResponseCollection.cs (1)
54protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityVersion.cs (3)
134internal virtual void WriteSignatureConfirmation(XmlDictionaryWriter writer, string id, byte[] signatureConfirmation) 140internal void WriteStartHeader(XmlDictionaryWriter writer) 263internal override void WriteSignatureConfirmation(XmlDictionaryWriter writer, string id, byte[] signature)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SendSecurityHeader.cs (1)
42protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SignatureConfirmationElement.cs (1)
48public void WriteTo(XmlDictionaryWriter writer, DictionaryManager dictionaryManager)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SignatureTargetIdManager.cs (1)
21public abstract void WriteIdAttribute(XmlDictionaryWriter writer, string id);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSKeyInfoSerializer.cs (4)
172public override void WriteContent(XmlDictionaryWriter writer, SecurityKeyIdentifierClause clause) 182protected abstract void WriteGeneration(XmlDictionaryWriter writer, SecurityContextKeyIdentifierClause clause); 276protected override void WriteGeneration(XmlDictionaryWriter writer, SecurityContextKeyIdentifierClause clause) 330protected override void WriteGeneration(XmlDictionaryWriter writer, SecurityContextKeyIdentifierClause clause)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecureConversation.cs (3)
244public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 409protected virtual void WriteGeneration(XmlDictionaryWriter writer, SecurityContextSecurityToken sct) 413public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecureConversationDec2005.cs (1)
107protected override void WriteGeneration(XmlDictionaryWriter writer, SecurityContextSecurityToken sct)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecureConversationFeb2005.cs (1)
99protected override void WriteGeneration(XmlDictionaryWriter writer, SecurityContextSecurityToken sct)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (7)
123public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 187public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 260public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 329public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 335private void WriteUserNamePassword(XmlDictionaryWriter writer, string id, string userName, string password) 461public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 537public override void WriteIdAttribute(XmlDictionaryWriter writer, string id)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
2293metadataSet.WriteTo(XmlDictionaryWriter.CreateDictionaryWriter(writer));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
521public abstract void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (8)
157public override void WriteTokenCore(XmlDictionaryWriter writer, SecurityToken token) 609protected virtual void WriteTargets(RequestSecurityToken rst, XmlDictionaryWriter writer) 614protected virtual void WriteReferences(RequestSecurityTokenResponse rstr, XmlDictionaryWriter writer) 624protected virtual void WriteRequestedTokenClosed(RequestSecurityTokenResponse rstr, XmlDictionaryWriter writer) 638XmlDictionaryWriter writer = XmlDictionaryWriter.CreateDictionaryWriter(xmlWriter); 807using (XmlDictionaryWriter writer = XmlDictionaryWriter.CreateDictionaryWriter(new XmlTextWriter(stream, Encoding.UTF8)))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (3)
162protected override void WriteReferences(RequestSecurityTokenResponse rstr, XmlDictionaryWriter writer) 179protected override void WriteRequestedTokenClosed(RequestSecurityTokenResponse rstr, XmlDictionaryWriter writer) 187protected override void WriteTargets(RequestSecurityToken rst, XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSUtilitySpecificationVersion.cs (2)
63internal abstract void WriteTimestamp(XmlDictionaryWriter writer, SecurityTimestamp timestamp); 91internal override void WriteTimestamp(XmlDictionaryWriter writer, SecurityTimestamp timestamp)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (6)
12internal static void AddNamespaceDeclaration(XmlDictionaryWriter writer, string prefix, XmlDictionaryString ns) 21internal static string EnsureNamespaceDefined(XmlDictionaryWriter writer, XmlDictionaryString ns, string defaultPrefix) 344static public void WriteAttributeStringAsUniqueId(XmlDictionaryWriter writer, string prefix, XmlDictionaryString localName, XmlDictionaryString ns, UniqueId id) 357static public void WriteElementStringAsUniqueId(XmlDictionaryWriter writer, XmlDictionaryString localName, XmlDictionaryString ns, UniqueId id) 364static public void WriteElementContentAsInt64(XmlDictionaryWriter writer, XmlDictionaryString localName, XmlDictionaryString ns, Int64 value) 379static public void WriteStringAsUniqueId(XmlDictionaryWriter writer, UniqueId id)
FrameworkFork\System.ServiceModel\System\ServiceModel\SpnEndpointIdentity.cs (1)
60internal override void WriteContentsTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSAddressing10ProblemHeaderQNameFault.cs (4)
93protected override void OnWriteDetail(XmlDictionaryWriter writer, EnvelopeVersion version) 103protected override void OnWriteDetailContents(XmlDictionaryWriter writer) 137protected override void OnWriteStartHeader(XmlDictionaryWriter writer, MessageVersion messageVersion) 142protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\X509CertificateEndpointIdentity.cs (1)
81internal override void WriteContentsTo(XmlDictionaryWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\XmlBuffer.cs (4)
19private XmlDictionaryWriter _writer; 83public XmlDictionaryWriter OpenSection(XmlDictionaryReaderQuotas quotas) 94var thisWriter = _writer; 98_writer = XmlDictionaryWriter.CreateBinaryWriter(_stream, XD.Dictionary, null, true);