System.Runtime.Serialization.Plists.DataContractBinaryPlistSerializer.WriteObject C# (CSharp) Method

WriteObject() public method

Writes the complete contents of the given object to the specified stream.
public WriteObject ( Stream stream, object graph ) : void
stream Stream The stream to write to.
graph object The object to write.
return void
        public void WriteObject(Stream stream, object graph)
        {
            this.WriteObject(stream, graph, true);
        }

Same methods

DataContractBinaryPlistSerializer::WriteObject ( Stream stream, object graph, bool closeStream ) : void