System.Xml.Serialization.SchemaObjectWriter.WriteXmlSchemaObject C# (CSharp) Method

WriteXmlSchemaObject() private method

private WriteXmlSchemaObject ( XmlSchemaObject o ) : string
o System.Xml.Schema.XmlSchemaObject
return string
        internal string WriteXmlSchemaObject(XmlSchemaObject o) {
            if (o == null) return String.Empty;
            Write3_XmlSchemaObject((XmlSchemaObject)o);
            return GetString();
        }

Usage Example

Example #1
0
 string ToString(XmlSchemaObject o, SchemaObjectWriter writer)
 {
     return(writer.WriteXmlSchemaObject(o));
 }
All Usage Examples Of System.Xml.Serialization.SchemaObjectWriter::WriteXmlSchemaObject