System.Runtime.Serialization.Json.DataContractJsonSerializerImpl.WriteObjectContent C# (CSharp) Method

WriteObjectContent() public method

public WriteObjectContent ( XmlDictionaryWriter writer, object graph ) : void
writer System.Xml.XmlDictionaryWriter
graph object
return void
        public override void WriteObjectContent(XmlDictionaryWriter writer, object graph)
        {
            WriteObjectContentHandleExceptions(new JsonWriterDelegator(writer, this.DateTimeFormat), graph);
        }

Same methods

DataContractJsonSerializerImpl::WriteObjectContent ( XmlWriter writer, object graph ) : void

Usage Example

コード例 #1
0
 public override void WriteObjectContent(XmlWriter writer, object?graph)
 {
     _serializer.WriteObjectContent(writer, graph);
 }
All Usage Examples Of System.Runtime.Serialization.Json.DataContractJsonSerializerImpl::WriteObjectContent