Leaked source code of windows server 2003
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.

108 lines
6.2 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Runtime.Serialization.Formatters.Soap</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter">
  8. <summary>
  9. <para> Serializes and deserializes an object, or an entire graph of
  10. connected objects, in SOAP format.</para>
  11. </summary>
  12. </member>
  13. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.#ctor">
  14. <summary>
  15. <para> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> class with default property values.
  16. </para>
  17. </summary>
  18. </member>
  19. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.#ctor(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)">
  20. <summary>
  21. <para> Initializes a new instance of the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> class with the
  22. specified <see cref="T:System.Runtime.Serialization.ISurrogateSelector" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.
  23. </para>
  24. </summary>
  25. <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>
  26. <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>
  27. </member>
  28. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Deserialize(System.IO.Stream)">
  29. <summary>
  30. <para> Deserializes the data on the provided stream and reconstitutes the graph of objects.
  31. </para>
  32. </summary>
  33. <param name="serializationStream">The stream containing the data to deserialize. </param>
  34. <returns>
  35. <para> The top object of the deserialized graph (root).
  36. </para>
  37. </returns>
  38. </member>
  39. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Deserialize(System.IO.Stream,System.Runtime.Remoting.Messaging.HeaderHandler)">
  40. <summary>
  41. <para> Deserializes the stream into an object graph, with any
  42. headers in that stream being handled by the given <see cref="T:System.Runtime.Remoting.Messaging.HeaderHandler" />
  43. .
  44. </para>
  45. </summary>
  46. <param name="serializationStream">The stream containing the data to deserialize. </param>
  47. <param name="handler">Delegate to handle any headers found on the stream. Can be <see langword="null" />.</param>
  48. <returns>
  49. <para> The top object of the deserialized graph (root).
  50. </para>
  51. </returns>
  52. </member>
  53. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Serialize(System.IO.Stream,System.Object)">
  54. <summary>
  55. <para> Serializes an object, or graph of objects with the
  56. specified root to the given <see cref="T:System.IO.Stream" />.
  57. </para>
  58. </summary>
  59. <param name="serializationStream">The stream onto which the formatter puts the data to serialize. </param>
  60. <param name="graph">The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized. </param>
  61. </member>
  62. <member name="M:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Serialize(System.IO.Stream,System.Object,System.Runtime.Remoting.Messaging.Header[])">
  63. <summary>
  64. <para>Serializes an object, or graph of objects with the specified root to the
  65. given <see cref="T:System.IO.Stream" /> in the SOAP RPC
  66. (Remote Procedure Call) format.</para>
  67. </summary>
  68. <param name="serializationStream">The stream onto which the formatter puts the data to serialize. </param>
  69. <param name="graph">The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized.</param>
  70. <param name="headers">Remoting headers to include in the serialization. Can be <see langword="null" />.</param>
  71. </member>
  72. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.TopObject">
  73. <summary>
  74. <para> Gets or sets the <see cref="T:System.Runtime.Serialization.Formatters.ISoapMessage" />
  75. into which the SOAP top object is deserialized.</para>
  76. </summary>
  77. </member>
  78. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.TypeFormat">
  79. <summary>
  80. <para>Gets or sets the format in which type descriptions are
  81. laid out in the serialized stream.</para>
  82. </summary>
  83. </member>
  84. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.AssemblyFormat">
  85. <summary>
  86. <para> Gets or sets the format in which assembly names are serialized.
  87. </para>
  88. </summary>
  89. </member>
  90. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.SurrogateSelector">
  91. <summary>
  92. <para>Gets or sets the <see cref="T:System.Runtime.Serialization.SurrogateSelector" /> that controls type substitution
  93. during serialization and deserialization.</para>
  94. </summary>
  95. </member>
  96. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Binder">
  97. <summary>
  98. <para>Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> that
  99. controls the binding of a serialized object to a type.</para>
  100. </summary>
  101. </member>
  102. <member name="P:System.Runtime.Serialization.Formatters.Soap.SoapFormatter.Context">
  103. <summary>
  104. <para>Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" />
  105. used with this <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> .</para>
  106. </summary>
  107. </member>
  108. </members>
  109. </doc>