8 types derived from XmlWriter
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
27internal class QueryOutputWriterV1 : XmlWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlRawWriter.cs (1)
44internal abstract partial class XmlRawWriter : XmlWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextWriter.cs (1)
37public class XmlTextWriter : XmlWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
22internal partial class XmlWellFormedWriter : XmlWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (1)
16internal partial class XmlWellFormedWriter : XmlWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
49internal partial class XmlWrappingWriter : XmlWriter
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
11internal class XmlSerializableWriter : XmlWriter
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
19public abstract class XmlDictionaryWriter : XmlWriter
278 references to XmlWriter
dotnet-svcutil-lib (278)
CodeDomFixup\ArrayOfXElementTypeHelper.cs (1)
212writeXml.Parameters.Add(new CodeParameterDeclarationExpression(new CodeTypeReference(typeof(Microsoft.Xml.XmlWriter)), "writer"));
FrameworkFork\Microsoft.Xml\Xml\BinHexEncoder.cs (1)
15internal static void Encode(byte[] buffer, int index, int count, XmlWriter writer)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (2)
29private XmlWriter _wrapped; 38public QueryOutputWriterV1(XmlWriter writer, XmlWriterSettings settings)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAutoDetectWriter.cs (2)
427_wrapped = ((XmlWellFormedWriter)XmlWriter.Create(_textWriter, _writerSettings)).RawWriter; 429_wrapped = ((XmlWellFormedWriter)XmlWriter.Create(_strm, _writerSettings)).RawWriter;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlCharCheckingWriter.cs (1)
62internal XmlCharCheckingWriter(XmlWriter baseWriter, bool checkValues, bool checkNames, bool replaceNewLines, string newLineChars)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEventCache.cs (1)
99public void EventsToWriter(XmlWriter writer)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (5)
1236XmlWriter xtw = CreateWriterForInnerOuterXml(sw); 1258private void WriteNode(XmlWriter xtw, bool defattr) 1310private void WriteAttributeValue(XmlWriter xtw) 1341XmlWriter xtw = CreateWriterForInnerOuterXml(sw); 1363private XmlWriter CreateWriterForInnerOuterXml(StringWriter sw)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderAsync.cs (3)
209XmlWriter xtw = CreateWriterForInnerOuterXml(sw); 231private async Task WriteNodeAsync(XmlWriter xtw, bool defattr) 296XmlWriter xtw = CreateWriterForInnerOuterXml(sw);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (3)
32private XmlWriter _writer; 252internal XmlWellFormedWriter(XmlWriter writer, XmlWriterSettings settings) 1591internal XmlWriter InnerWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (2)
98internal void WriteDecl(XmlWriter writer, XmlRawWriter rawWriter) 341internal void Replay(XmlWriter writer)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (2)
54protected XmlWriter writer; 59internal XmlWrappingWriter(XmlWriter baseWriter)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriter.cs (12)
666public static XmlWriter Create(string outputFileName) 674public static XmlWriter Create(string outputFileName, XmlWriterSettings settings) 684public static XmlWriter Create(Stream output) 690public static XmlWriter Create(Stream output, XmlWriterSettings settings) 700public static XmlWriter Create(TextWriter output) 706public static XmlWriter Create(TextWriter output, XmlWriterSettings settings) 716public static XmlWriter Create(StringBuilder output) 722public static XmlWriter Create(StringBuilder output, XmlWriterSettings settings) 736public static XmlWriter Create(XmlWriter output) 742public static XmlWriter Create(XmlWriter output, XmlWriterSettings settings)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriterSettings.cs (10)
457internal XmlWriter CreateWriter(string outputFileName) 491internal XmlWriter CreateWriter(Stream output) 498XmlWriter writer; 593internal XmlWriter CreateWriter(TextWriter output) 600XmlWriter writer; 652internal XmlWriter CreateWriter(XmlWriter output) 713private XmlWriter AddConformanceWrapper(XmlWriter baseWriter) 758XmlWriter writer = baseWriter;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (6)
1515public override XmlWriter PrependChild() 1532public override XmlWriter AppendChild() 1549public override XmlWriter InsertAfter() 1574public override XmlWriter InsertBefore() 1598public override XmlWriter CreateAttributes() 1610public override XmlWriter ReplaceRange(XPathNavigator lastSiblingToReplace)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (2)
342public override void WriteTo(XmlWriter w) 350public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlCDATASection.cs (2)
79public override void WriteTo(XmlWriter w) 85public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlComment.cs (2)
45public override void WriteTo(XmlWriter w) 51public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDeclaration.cs (2)
157public override void WriteTo(XmlWriter w) 164public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (3)
1376public virtual void Save(XmlWriter w) 1410public override void WriteTo(XmlWriter w) 1418public override void WriteContentTo(XmlWriter xw)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocumentFragment.cs (2)
184public override void WriteTo(XmlWriter w) 190public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocumentType.cs (2)
137public override void WriteTo(XmlWriter w) 143public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (4)
426public override void WriteTo(XmlWriter w) 451private static void WriteElementTo(XmlWriter writer, XmlElement e) 502private void WriteStartElement(XmlWriter w) 518public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntity.cs (2)
147public override void WriteTo(XmlWriter w) 152public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntityReference.cs (2)
155public override void WriteTo(XmlWriter w) 161public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (2)
1023public abstract void WriteTo(XmlWriter w); 1026public abstract void WriteContentTo(XmlWriter w);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNotation.cs (2)
87public override void WriteTo(XmlWriter w) 92public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlProcessingInstruction.cs (2)
95public override void WriteTo(XmlWriter w) 101public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlSignificantWhitespace.cs (2)
96public override void WriteTo(XmlWriter w) 102public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (2)
124public override void WriteTo(XmlWriter w) 130public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlUnspecifiedAttribute.cs (1)
79public override void WriteTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlWhitespace.cs (2)
96public override void WriteTo(XmlWriter w) 102public override void WriteContentTo(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (2)
166public void Write(XmlWriter writer) 175public void Write(XmlWriter writer, XmlNamespaceManager namespaceManager)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Compilation.cs (1)
200internal void InvokeWriter(XmlMapping mapping, XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces, string encodingStyle, string id)
FrameworkFork\Microsoft.Xml\Xml\Serialization\IXmlSerializable.cs (1)
24void WriteXml(XmlWriter writer);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCustomFormatter.cs (1)
116internal static void WriteArrayBase64(XmlWriter writer, byte[] inData, int start, int count)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (2)
689XmlWriter xmlWriter = XmlWriter.Create(sw, settings);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (3)
26private XmlWriter _w; 41internal void Init(XmlWriter w, XmlSerializerNamespaces namespaces, string encodingStyle, string idBase, TempAssembly tempAssembly) 64protected XmlWriter Writer
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriterILGen.cs (9)
832MethodInfo XmlWriter_WriteStartElement = typeof(XmlWriter).GetMethod( 861MethodInfo XmlWriter_WriteString = typeof(XmlWriter).GetMethod( 876MethodInfo XmlWriter_WriteEndElement = typeof(XmlWriter).GetMethod( 908MethodInfo XmlWriter_WriteStartElement = typeof(XmlWriter).GetMethod( 934MethodInfo XmlWriter_WriteEndElement = typeof(XmlWriter).GetMethod( 1236MethodInfo XmlWriter_WriteStartAttribute = typeof(XmlWriter).GetMethod( 1297MethodInfo XmlWriter_WriteString = typeof(XmlWriter).GetMethod( 1369MethodInfo XmlWriter_WriteEndAttribute = typeof(XmlWriter).GetMethod( 1987new Type[] { typeof(XmlWriter) },
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (5)
342public void Serialize(XmlWriter xmlWriter, object o) 351public void Serialize(XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces) 356public void Serialize(XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces, string encodingStyle) 362public void Serialize(XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces, string encodingStyle, string id) 772private void SerializePrimitive(XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (1)
140public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\BooleanExpr.cs (1)
62public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\BooleanFunctions.cs (1)
91public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (1)
79public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantBaseQuery.cs (1)
60public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FilterQuery.cs (1)
185public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\FunctionQuery.cs (1)
126public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\LogicalExpr.cs (1)
437public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\MergeFilterQuery.cs (1)
76public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NodeFunctions.cs (1)
112public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NumberFunctions.cs (1)
122public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\NumericExpr.cs (1)
78public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\OperandQuery.cs (1)
30public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Query.cs (1)
259public virtual void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (1)
116public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\StringFunctions.cs (1)
274public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\UnionExpr.cs (1)
165public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\VariableQuery.cs (1)
73public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorQuery.cs (1)
68public override void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathExpr.cs (1)
77private void PrintQuery(XmlWriter w)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (22)
619public virtual void WriteSubtree(XmlWriter writer) 1329public virtual XmlWriter PrependChild() 1334public virtual XmlWriter AppendChild() 1339public virtual XmlWriter InsertAfter() 1344public virtual XmlWriter InsertBefore() 1349public virtual XmlWriter CreateAttributes() 1354public virtual XmlWriter ReplaceRange(XPathNavigator lastSiblingToReplace) 1378XmlWriter writer = ReplaceRange(this); 1400XmlWriter xmlWriter; 1422xmlWriter = XmlWriter.Create(stringWriter, writerSettings); 1452XmlWriter xmlWriter; 1460xmlWriter = XmlWriter.Create(stringWriter, writerSettings); 1531XmlWriter writer = AppendChild(); 1562XmlWriter writer = PrependChild(); 1593XmlWriter writer = InsertBefore(); 1624XmlWriter writer = InsertAfter(); 1655XmlWriter writer = PrependChild(); 1667XmlWriter writer = AppendChild(); 1679XmlWriter writer = InsertBefore(); 1691XmlWriter writer = InsertAfter(); 1703XmlWriter writer = CreateAttributes(); 2121internal void BuildSubtree(XmlReader reader, XmlWriter writer)
FrameworkFork\Microsoft.Xml\Xml\Xslt\XsltCommand.cs (22)
42public void Transform(IXPathNavigable input, XmlWriter results) 48public void Transform(IXPathNavigable input, XsltArgumentList arguments, XmlWriter results) 57using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 66using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 76public void Transform(XmlReader input, XmlWriter results) 82public void Transform(XmlReader input, XsltArgumentList arguments, XmlWriter results) 91using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 100using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 111public void Transform(string inputUri, XmlWriter results) 121public void Transform(string inputUri, XsltArgumentList arguments, XmlWriter results) 135using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 146using (XmlWriter writer = XmlWriter.Create(results, OutputSettings)) 163using (XmlWriter writer = XmlWriter.Create(resultsFile, OutputSettings)) 173public abstract void Transform(XmlReader input, XsltArgumentList arguments, XmlWriter results, XmlResolver documentResolver); 175public abstract void Transform(IXPathNavigable input, XsltArgumentList arguments, XmlWriter results, XmlResolver documentResolver);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (1)
1606CodeParameterDeclarationExpression writerArg = new CodeParameterDeclarationExpression(typeof(XmlWriter), "writer");
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSerializer.cs (4)
235public override void WriteObject(XmlWriter writer, object graph) 240public override void WriteStartObject(XmlWriter writer, object graph) 245public override void WriteObjectContent(XmlWriter writer, object graph) 250public override void WriteEndObject(XmlWriter writer)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializer.cs (4)
31public virtual void WriteObject(XmlWriter writer, object graph) 37public virtual void WriteStartObject(XmlWriter writer, object graph) 43public virtual void WriteObjectContent(XmlWriter writer, object graph) 49public virtual void WriteEndObject(XmlWriter writer)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableServices.cs (1)
60public static void WriteNodes(XmlWriter xmlWriter, XmlNode[] nodes)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (2)
13private XmlWriter _xmlWriter; 17internal void BeginWrite(XmlWriter xmlWriter, object obj)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (3)
17protected XmlWriter writer; 22public XmlWriterDelegator(XmlWriter writer) 29internal XmlWriter Writer
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (3)
62static public XmlDictionaryWriter CreateDictionaryWriter(XmlWriter writer) 596private XmlWriter _writer; 600public XmlWrappedWriter(XmlWriter writer)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\DiagnosticTraceBase.cs (1)
164protected static void AddExceptionToTraceString(XmlWriter xml, Exception exception)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\DictionaryTraceRecord.cs (1)
21internal override void WriteTo(XmlWriter xml)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\EtwDiagnosticTrace.cs (11)
193using (XmlWriter writer = XmlWriter.Create(stringWriter)) 249using (XmlWriter xml = XmlWriter.Create(stringWriter)) 265private static void WriteExceptionToTraceString(XmlWriter xml, Exception exception, int remainingLength, int remainingAllowedRecursionDepth) 332using (XmlWriter xml = XmlWriter.Create(stringWriter)) 361using (XmlWriter xml = XmlWriter.Create(stringWriter)) 393private static bool WriteStartElement(XmlWriter xml, string localName, ref int remainingLength) 405private static bool WriteXmlElementString(XmlWriter xml, string localName, string value, ref int remainingLength)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\StringTraceRecord.cs (1)
25internal override void WriteTo(XmlWriter writer)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\TraceRecord.cs (1)
16internal virtual void WriteTo(XmlWriter writer)
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\SecurityTokenSerializer.cs (6)
85public void WriteToken(XmlWriter writer, SecurityToken token) 107public void WriteKeyIdentifier(XmlWriter writer, SecurityKeyIdentifier keyIdentifier) 129public void WriteKeyIdentifierClause(XmlWriter writer, SecurityKeyIdentifierClause keyIdentifierClause) 152protected abstract void WriteTokenCore(XmlWriter writer, SecurityToken token); 154protected abstract void WriteKeyIdentifierCore(XmlWriter writer, SecurityKeyIdentifier keyIdentifier); 156protected abstract void WriteKeyIdentifierClauseCore(XmlWriter writer, SecurityKeyIdentifierClause keyIdentifierClause);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\KeyInfoSerializer.cs (3)
142protected override void WriteTokenCore(XmlWriter writer, SecurityToken token) 196protected override void WriteKeyIdentifierCore(XmlWriter writer, SecurityKeyIdentifier keyIdentifier) 286protected override void WriteKeyIdentifierClauseCore(XmlWriter writer, SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AddressHeader.cs (1)
151public void WriteAddressHeader(XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (8)
461using (XmlWriter textWriter = XmlWriter.Create(stringWriter, settings)) 593public void WriteBody(XmlWriter writer) 605public void WriteStartBody(XmlWriter writer) 622public void WriteMessage(XmlWriter writer) 633public virtual Task WriteMessageAsync(XmlWriter writer) 1778public void WriteTo(XmlWriter writer) 1785public static void WriteAttributes(XmlAttributeHolder[] attributes, XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (1)
254public void WriteTo(XmlWriter writer, EnvelopeVersion version)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeader.cs (3)
57using (XmlWriter textWriter = XmlWriter.Create(stringWriter, xmlSettings)) 89public void WriteHeader(XmlWriter writer, MessageVersion messageVersion)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeaders.cs (6)
1555public void WriteHeader(int headerIndex, XmlWriter writer) 1567public void WriteStartHeader(int headerIndex, XmlWriter writer) 1599public void WriteHeaderContents(int headerIndex, XmlWriter writer) 1635private void WriteBufferedMessageHeader(IBufferedMessageData bufferedMessageData, int bufferedMessageHeaderIndex, XmlWriter writer) 1643private void WriteStartBufferedMessageHeader(IBufferedMessageData bufferedMessageData, int bufferedMessageHeaderIndex, XmlWriter writer) 1652private void WriteBufferedMessageHeaderContents(IBufferedMessageData bufferedMessageData, int bufferedMessageHeaderIndex, XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncoder.cs (1)
578private void ReturnStreamedWriter(XmlWriter xmlWriter)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (2)
1047XmlWriter xmlWriter = XmlWriter.Create(stringWriter);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataReference.cs (1)
57void IXmlSerializable.WriteXml(XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (3)
49public void WriteTo(XmlWriter writer) 85void IXmlSerializable.WriteXml(XmlWriter writer) 90private void WriteMetadataSet(XmlWriter writer, bool processOuterElement)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
27internal XmlWriter Writer;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (2)
603XmlWriter xw = XmlWriter.Create(stream);
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (3)
1169public void WriteContentsTo(AddressingVersion addressingVersion, XmlWriter writer) 1204public void WriteTo(AddressingVersion addressingVersion, XmlWriter writer) 1216public void WriteTo(AddressingVersion addressingVersion, XmlWriter writer, string localName, string ns)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityToken.cs (4)
476private void OnWriteTo(XmlWriter writer) 488public void WriteTo(XmlWriter writer) 549internal protected virtual void OnWriteCustomAttributes(XmlWriter writer) { } 551internal protected virtual void OnWriteCustomElements(XmlWriter writer) { }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityTokenResponse.cs (4)
487private void OnWriteTo(XmlWriter w) 499public void WriteTo(XmlWriter writer) 560protected internal virtual void OnWriteCustomAttributes(XmlWriter writer) 563protected internal virtual void OnWriteCustomElements(XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\RequestSecurityTokenResponseCollection.cs (1)
49public void WriteTo(XmlWriter writer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TrustDriver.cs (3)
146public abstract void WriteRequestSecurityToken(RequestSecurityToken rst, XmlWriter w); 149public abstract void WriteRequestSecurityTokenResponse(RequestSecurityTokenResponse rstr, XmlWriter w); 152public abstract void WriteRequestSecurityTokenResponseCollection(RequestSecurityTokenResponseCollection rstrCollection, XmlWriter writer);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
2284XmlWriter writer;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityTokenSerializer.cs (3)
258protected override void WriteTokenCore(XmlWriter writer, SecurityToken token) 299protected override void WriteKeyIdentifierCore(XmlWriter writer, SecurityKeyIdentifier keyIdentifier) 347protected override void WriteKeyIdentifierClauseCore(XmlWriter writer, SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (3)
604public override void WriteRequestSecurityToken(RequestSecurityToken rst, XmlWriter xmlWriter) 628public override void WriteRequestSecurityTokenResponse(RequestSecurityTokenResponse rstr, XmlWriter xmlWriter) 633public override void WriteRequestSecurityTokenResponseCollection(RequestSecurityTokenResponseCollection rstrCollection, XmlWriter xmlWriter)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (1)
351static public void WriteElementStringAsUniqueId(XmlWriter writer, string localName, UniqueId id)
FrameworkFork\System.ServiceModel\System\ServiceModel\XmlBuffer.cs (1)
140public void WriteTo(int sectionIndex, XmlWriter writer)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (1)
474public void Write(XmlWriter writer)
Metadata\MetadataDocumentSaver.cs (3)
80using (XmlNS.XmlWriter xWriter = CreateXmlFile(mfi.FilePath)) 311private XmlNS.XmlWriter CreateXmlFile(string filePath) 326return XmlNS.XmlWriter.Create(filePath, xmlWriterSettings);
Metadata\MetadataFileInfo.cs (4)
18internal MetadataFileInfo(object metadata, string filePath, string sourceUri, Action<XmlNS.XmlWriter> write) 31public Action<XmlNS.XmlWriter> Write { get; private set; } 61internal WsdlFileInfo(object metadata, string filePath, string sourceUri, Action<XmlNS.XmlWriter> write) : base(metadata, filePath, sourceUri, write) 76internal SchemaFileInfo(object metadata, string filePath, string sourceUri, Action<XmlNS.XmlWriter> write) : base(metadata, filePath, sourceUri, write)