Files
linux-packaging-mono/mcs/class/System.ServiceModel/Documentation/en/System.ServiceModel/OperationFormatUse.xml
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

69 lines
3.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Type Name="OperationFormatUse" FullName="System.ServiceModel.OperationFormatUse">
<TypeSignature Language="C#" Value="public enum OperationFormatUse" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed OperationFormatUse extends System.Enum" />
<AssemblyInfo>
<AssemblyName>System.ServiceModel</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The default value is <see cref="F:System.ServiceModel.OperationFormatUse.Literal" />. <see cref="F:System.ServiceModel.OperationFormatUse.Literal" /> means that the message is a literal instance of the schema in the WSDL as shown in the following Document/Literal example.</para>
<code>&lt;Add xmlns="http://Microsoft.ServiceModel.Samples"&gt;
&lt;n1&gt;100&lt;/n1&gt;
&lt;n2&gt;15.99&lt;/n2&gt;
&lt;/Add&gt;</code>
<para>
<see cref="F:System.ServiceModel.OperationFormatUse.Encoded" /> means that the schemas in the WSDL are abstract specifications that are encoded according to the rules found in SOAP 1.1 section 5. The following is an RPC/Encoded example. </para>
<code>&lt;q1:Add xmlns:q1="http://Microsoft.ServiceModel.Samples"&gt;
&lt;n1 xsi:type="xsd:double" xmlns=""&gt;100&lt;/n1&gt;
&lt;n2 xsi:type="xsd:double" xmlns=""&gt;15.99&lt;/n2&gt;
&lt;/q1:Add&gt;</code>
<para>Use the <see cref="T:System.ServiceModel.XmlSerializerFormatAttribute" /> to set this value.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines the format of the message.</para>
</summary>
</Docs>
<Members>
<Member MemberName="Encoded">
<MemberSignature Language="C#" Value="Encoded" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.ServiceModel.OperationFormatUse Encoded = int32(1)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.OperationFormatUse</ReturnType>
</ReturnValue>
<Docs>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implies that the schemas in the WSDL are abstract specifications that are encoded according to the rules found in SOAP 1.1 section 5.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Literal">
<MemberSignature Language="C#" Value="Literal" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.ServiceModel.OperationFormatUse Literal = int32(0)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.OperationFormatUse</ReturnType>
</ReturnValue>
<Docs>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implies that the message is a literal instance of the schema in the WSDL.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>