You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
6.2 KiB
109 lines
6.2 KiB
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>System.Runtime.Serialization.Formatters.Soap</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter">
|
|
<summary>
|
|
<para> Serializes and deserializes an object, or an entire graph of
|
|
connected objects, in SOAP format.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.#ctor">
|
|
<summary>
|
|
<para> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> class with default property values.
|
|
</para>
|
|
</summary>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.#ctor(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>
|
|
<para> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> class with the
|
|
specified <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.
|
|
</para>
|
|
</summary>
|
|
<param name="selector">The <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> to use with the new instance of <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" />. Can be <see langword="null" />.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that holds the source and destination of the serialization. If the <paramref name="context" /> parameter is <see langword="null" />, then the <see cref="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Context" /> defaults to <see cref="F:System.Runtime.Serialization.StreamingContextStates.CrossMachine" />.</param>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Deserialize(System.IO.Stream)">
|
|
<summary>
|
|
<para> Deserializes the data on the provided stream and reconstitutes the graph of objects.
|
|
</para>
|
|
</summary>
|
|
<param name="serializationStream">The stream containing the data to deserialize. </param>
|
|
<returns>
|
|
<para> The top object of the deserialized graph (root).
|
|
</para>
|
|
</returns>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Deserialize(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler)">
|
|
<summary>
|
|
<para> Deserializes the stream into an object graph, with any
|
|
headers in that stream being handled by the given <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" />
|
|
.
|
|
</para>
|
|
</summary>
|
|
<param name="serializationStream">The stream containing the data to deserialize. </param>
|
|
<param name="handler">Delegate to handle any headers found on the stream. Can be <see langword="null" />.</param>
|
|
<returns>
|
|
<para> The top object of the deserialized graph (root).
|
|
</para>
|
|
</returns>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Serialize(System.IO.Stream,System.Object)">
|
|
<summary>
|
|
<para> Serializes an object, or graph of objects with the
|
|
specified root to the given <see cref="T:System.IO.Stream" />.
|
|
</para>
|
|
</summary>
|
|
<param name="serializationStream">The stream onto which the formatter puts the data to serialize. </param>
|
|
<param name="graph">The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized. </param>
|
|
</member>
|
|
<member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Serialize(System.IO.Stream,System.Object,System.Runtime.Remoting.Messaging.Header[])">
|
|
<summary>
|
|
<para>Serializes an object, or graph of objects with the specified root to the
|
|
given <see cref="T:System.IO.Stream" /> in the SOAP RPC
|
|
(Remote Procedure Call) format.</para>
|
|
</summary>
|
|
<param name="serializationStream">The stream onto which the formatter puts the data to serialize. </param>
|
|
<param name="graph">The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized.</param>
|
|
<param name="headers">Remoting headers to include in the serialization. Can be <see langword="null" />.</param>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.TopObject">
|
|
<summary>
|
|
<para> Gets or sets the <see cref="T:System.Runtime.Serialization.Formatters.ISoapMessage" />
|
|
into which the SOAP top object is deserialized.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.TypeFormat">
|
|
<summary>
|
|
<para>Gets or sets the format in which type descriptions are
|
|
laid out in the serialized stream.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.AssemblyFormat">
|
|
<summary>
|
|
<para> Gets or sets the format in which assembly names are serialized.
|
|
</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.SurrogateSelector">
|
|
<summary>
|
|
<para>Gets or sets the <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> that controls type substitution
|
|
during serialization and deserialization.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Binder">
|
|
<summary>
|
|
<para>Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> that
|
|
controls the binding of a serialized object to a type.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Context">
|
|
<summary>
|
|
<para>Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" />
|
|
used with this <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> .</para>
|
|
</summary>
|
|
</member>
|
|
</members>
|
|
</doc>
|