1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="MessageVersion" FullName="System.ServiceModel.Channels.MessageVersion">
<TypeSignature Language="C#" Value="public sealed class MessageVersion" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed MessageVersion extends System.Object" />
<AssemblyInfo>
<AssemblyName>System.ServiceModel</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.ServiceModel.Channels.MessageVersion" /> contains the versioning information both about the SOAP envelope and the addressing protocol that is used by a message. An instance of <see cref="T:System.ServiceModel.Channels.Message" /> is bound upon creation to a specific <see cref="T:System.ServiceModel.Channels.MessageVersion" /> by passing the version as a parameter into one of the <see cref="Overload:System.ServiceModel.Channels.Message.CreateMessage" /> overloads.</para>
<para>All the static "get" properties in this class, such as <see cref="P:System.ServiceModel.Channels.MessageVersion.Soap11WSAddressing10" /> and <see cref="P:System.ServiceModel.Channels.MessageVersion.Soap12" /> have enumeration-like semantics. They provide an enumeration of the possible message versions supported by the indigo1 runtime. A message has an envelope structure and an addressing structure. <see cref="T:System.ServiceModel.Channels.MessageVersion" /> is just a shortcut for supplying {<see cref="T:System.ServiceModel.EnvelopeVersion" />, <see cref="T:System.ServiceModel.Channels.AddressingVersion" />} together.</para>
<para>There are currently two SOAP envelope versions available: SOAP 1.1 and SOAP 1.2. These versions of SOAP are represented by <see cref="T:System.ServiceModel.EnvelopeVersion" /> and are returned by the <see cref="P:System.ServiceModel.EnvelopeVersion.Soap11" /> and <see cref="P:System.ServiceModel.EnvelopeVersion.Soap12" /> properties. The version of SOAP associated with the <see cref="T:System.ServiceModel.Channels.MessageVersion" /> can be recovered by using the <see cref="P:System.ServiceModel.Channels.MessageVersion.Envelope" /> property. crdefault the schema for <see cref="http://go.microsoft.com/fwlink/?LinkId=96641">SOAP 1.1</see> and <see cref="http://go.microsoft.com/fwlink/?LinkId=96642">SOAP 1.2</see>. </para>
<para>There are currently two versions of WS-Addressing available. The one submitted on 10 August 2004 and the one specified in the WS-Addressing 1.0 protocol. The address version used by the current message version can be recovered using the <see cref="P:System.ServiceModel.Channels.MessageVersion.Addressing" /> property. These versions of WS-Addressing are represented by <see cref="T:System.ServiceModel.Channels.AddressingVersion" /> and are returned by the <see cref="P:System.ServiceModel.Channels.AddressingVersion.WSAddressingAugust2004" /> and <see cref="P:System.ServiceModel.Channels.AddressingVersion.WSAddressing10" /> properties. The WS-Addressing August 2004 is retained as a legacy value. The 10 August 2004 W3C Member Submission for WS-Addressing is available at <see cref="http://go.microsoft.com/fwlink/?LinkId=96643">Web Services Addressing (WS-Addressing)</see>. The 17 August 2005 W3C Candidate Recommendation for WS-Addressing 1.0 - Core is available at <see cref="http://go.microsoft.com/fwlink/?LinkId=96644">Web Services Addressing 1.0 - Core</see>.</para>
<para>
<see cref="P:System.ServiceModel.Channels.AddressingVersion.None" /> provides support for using "plain old XML" (POX)-style messaging. Enabling basic POX messaging is now a matter of setting up an HTTP binding on your service with a text encoder that uses <see cref="P:System.ServiceModel.Channels.AddressingVersion.None" />.</para>
<para>Message version objects can be created using specified versions of WS-Addressing and SOAP using one of the <see cref="Overload:System.ServiceModel.Channels.MessageVersion.CreateVersion" /> overloads.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the versions of SOAP and WS-Addressing associated with a message and its exchange.</para>
</summary>
</Docs>
<Members>
<Member MemberName="Addressing">
<MemberSignature Language="C#" Value="public System.ServiceModel.Channels.AddressingVersion Addressing { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.Channels.AddressingVersion Addressing" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.AddressingVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>These versions of WS-Addressing are represented by <see cref="T:System.ServiceModel.Channels.AddressingVersion" /> and are returned by the <see cref="P:System.ServiceModel.Channels.AddressingVersion.WSAddressingAugust2004" /> and <see cref="P:System.ServiceModel.Channels.AddressingVersion.WSAddressing10" /> properties. The WS-Addressing August 2004 is retained as a legacy value. The 10 August 2004 W3C Member Submission for WS-Addressing is available at <see cref="http://go.microsoft.com/fwlink/?LinkId=96643">Web Services Addressing (WS-Addressing)</see>. The 17 August 2005 W3C Candidate Recommendation for WS-Addressing 1.0 - Core is available at <see cref="http://go.microsoft.com/fwlink/?LinkId=96644">Web Services Addressing 1.0 - Core</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the version of WS-Addressing that is associated with the current message version.</para>
</summary>
</Docs>
</Member>
<Member MemberName="CreateVersion">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion CreateVersion (System.ServiceModel.EnvelopeVersion envelope_version);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.ServiceModel.Channels.MessageVersion CreateVersion(class System.ServiceModel.EnvelopeVersion envelope_version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="envelope_version" Type="System.ServiceModel.EnvelopeVersion" />
</Parameters>
<Docs>
<param name="envelope_version">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The SOAP versions currently available are SOAP 1.1 and SOAP 1.2. There is an <see cref="T:System.ServiceModel.EnvelopeVersion" /> for each version of SOAP that contains the data relevant to its use. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a message version object by using WS-Addressing 1.0 and with a specified SOAP version.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.ServiceModel.Channels.MessageVersion" /> using the specified version of SOAP and WS-Addressing 1.0.</para>
</returns>
</Docs>
</Member>
<Member MemberName="CreateVersion">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion CreateVersion (System.ServiceModel.EnvelopeVersion envelope_version, System.ServiceModel.Channels.AddressingVersion addressing_version);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.ServiceModel.Channels.MessageVersion CreateVersion(class System.ServiceModel.EnvelopeVersion envelope_version, class System.ServiceModel.Channels.AddressingVersion addressing_version) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="envelope_version" Type="System.ServiceModel.EnvelopeVersion" />
<Parameter Name="addressing_version" Type="System.ServiceModel.Channels.AddressingVersion" />
</Parameters>
<Docs>
<param name="envelope_version">To be added.</param>
<param name="addressing_version">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The SOAP versions currently available are SOAP 1.1 and SOAP 1.2. There is an <see cref="T:System.ServiceModel.EnvelopeVersion" /> for each version of SOAP that contains the data relevant to its use.</para>
<para>There are currently two versions of WS-Addressing available. One submitted 10 August 2004 and the other submitted August 2005 and referred to as the WS-Addressing 1.0 protocol. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a message version object with specified SOAP and WS-Addressing versions.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.ServiceModel.Channels.MessageVersion" /> using the specified versions of WS-Addressing and SOAP.</para>
</returns>
</Docs>
</Member>
<Member MemberName="Default">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Default { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Default" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This returns the same object as <see cref="P:System.ServiceModel.Channels.MessageVersion.Soap12WSAddressing10" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the default message version used by indigo1.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Envelope">
<MemberSignature Language="C#" Value="public System.ServiceModel.EnvelopeVersion Envelope { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.EnvelopeVersion Envelope" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.EnvelopeVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>There are currently two SOAP envelope versions available: SOAP 1.1 and SOAP 1.2. These versions of SOAP are represented by <see cref="T:System.ServiceModel.EnvelopeVersion" /> and are returned by the <see cref="P:System.ServiceModel.EnvelopeVersion.Soap11" /> and <see cref="P:System.ServiceModel.EnvelopeVersion.Soap12" /> properties. The version of SOAP associated with the <see cref="T:System.ServiceModel.Channels.MessageVersion" /> can be recovered by using the <see cref="P:System.ServiceModel.Channels.MessageVersion.Envelope" /> property. crdefault the schema for <see cref="http://go.microsoft.com/fwlink/?LinkId=96641">SOAP 1.1</see> and <see cref="http://go.microsoft.com/fwlink/?LinkId=96642">SOAP 1.2</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the SOAP version associated with the current message version.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public override bool Equals (object value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Object" />
</Parameters>
<Docs>
<param name="value">To be added.</param>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a value that indicates whether the current message version is equal to a specified object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the specified object is equal to the current <see cref="T:System.ServiceModel.Channels.MessageVersion" /> object; otherwise, false.</para>
</returns>
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a hash code for the current message version.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A unique hash code for the current <see cref="T:System.ServiceModel.Channels.MessageVersion" />.</para>
</returns>
</Docs>
</Member>
<Member MemberName="None">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion None { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion None" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.ServiceModel.Channels.MessageVersion.None" /> consists of the <see cref="P:System.ServiceModel.EnvelopeVersion.None" /> and <see cref="P:System.ServiceModel.Channels.AddressingVersion.None" />. This provides support for using "plain old XML" (POX)-style messaging. Enabling basic POX messaging is now a matter of setting up an HTTP binding on your service with a text encoder that uses <see cref="P:System.ServiceModel.Channels.AddressingVersion.None" />.</para>
<para>Note that when a service is configured with the <see cref="T:System.ServiceModel.BasicHttpBinding" /> and the <see cref="T:System.ServiceModel.Channels.MessageVersion" /> is set to <see cref="P:System.ServiceModel.Channels.MessageVersion.None" />, the action header in a request message is removed from the response message. This is consistent with the way ASMX services work.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version that does not use SOAP or WS-Addressing.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap11">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap11 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap11" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version using SOAP 1.1.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap11WSAddressing10">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap11WSAddressing10 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap11WSAddressing10" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For more information and the schemas for WS-Addressing 1.0 and SOAP 1.1, see the following:</para>
<list type="bullet">
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96644">Web Services Addressing 1.0 - Core</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkId=96647">WS-Addressing 1.0 schema</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkId=96641">SOAP 1.1 schema</see>
</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version using WS-Addressing 1.0 and SOAP 1.1.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap11WSAddressingAugust2004">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap11WSAddressingAugust2004 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap11WSAddressingAugust2004" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For more information and the schemas for the 10 August 2004 W3C Member Submission for WS-Addressing and SOAP 1.1, see the following:</para>
<list type="bullet">
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96643">10 August 2004 W3C Member Submission for WS-Addressing</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkId=96648">WS-Addressing submitted 10 August 2004 schema</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96641">SOAP 1.1</see>
</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version by using WS-Addressing submitted 10 August 2004 and SOAP 1.1.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap12">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap12 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap12" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version using SOAP 1.2.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap12WSAddressing10">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap12WSAddressing10 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap12WSAddressing10" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For more information and the schemas of the 17 August 2005 W3C Candidate Recommendation for WS-Addressing and SOAP 1.2, see the following:</para>
<list type="bullet">
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96644">17 August 2005 W3C Candidate Recommendation for WS-Addressing 1.0 - Core</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96647">WS-Addressing 1.0 schema</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96642">SOAP 1.2 schema</see>
</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version using WS-Addressing 1.0 and SOAP 1.2.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Soap12WSAddressingAugust2004">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Channels.MessageVersion Soap12WSAddressingAugust2004 { get; }" />
<MemberSignature Language="ILAsm" Value=".property class System.ServiceModel.Channels.MessageVersion Soap12WSAddressingAugust2004" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.MessageVersion</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For more information and the schemas for 10 August W3C Member Submission for WS-Addressing and SOAP 1.2, see the following:</para>
<list type="bullet">
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96643">10 August 2004 W3C Member Submission for WS-Addressing</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96648">WS-Addressing submitted 10 August 2004 schema</see>
</para>
</item>
<item>
<para>
<see cref="http://go.microsoft.com/fwlink/?LinkID=96642">SOAP 1.2 schema</see>
</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the message version using WS-Addressing submitted August 2004 and SOAP 1.2.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ToString">
<MemberSignature Language="C#" Value="public override string ToString ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns the string representation of the current message version.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The string representation of the current message version.</para>
</returns>
</Docs>
</Member>
</Members>
</Type>
|