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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="XmlFormatExtensionAttribute" FullName="System.Web.Services.Configuration.XmlFormatExtensionAttribute">
<TypeSignature Language="C#" Maintainer="auto" Value="public sealed class XmlFormatExtensionAttribute : Attribute" />
<AssemblyInfo>
<AssemblyName>System.Web.Services</AssemblyName>
<AssemblyPublicKey>
</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<Base>
<BaseTypeName>System.Attribute</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.AttributeUsage(System.AttributeTargets.Class, Inherited=true)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A service description format extension extends how a service description is generated for an XML Web service created using ASP.NET. Specifically, a service description format extension adds XML elements to the service description. This is useful when a SOAP extension is built to run on both the client and server side of an XML Web service, as information about SOAP extensions is not placed in the service description. If you want to add information about the SOAP extension to the service description, a client can interpret that it must run the specific SOAP extension. An example of a SOAP extension that must run on both the client and server is an encryption SOAP extension. If an encryption SOAP extension runs only on the server and it encrypts return values before sending them back to the client, the client must have the SOAP extension running to decrypt the SOAP message. Otherwise, the client cannot process the return value.</para>
<para>Use the following steps to build a service description format extension: </para>
<list type="ordered">
<item>
<para>Build a class that derives from <see cref="T:System.Web.Services.Description.ServiceDescriptionFormatExtension" />.</para>
</item>
<item>
<para>Apply a <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> to the class and specify the extension points at which the service description format extension should run.</para>
</item>
<item>
<para>Optionally, apply a <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionPointAttribute" /> to the class and specify a member within the class that acts as a new extension point.</para>
</item>
<item>
<para>Optionally, apply a <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute" /> to the class and specify the XML namespace prefix to be associated with XML elements generated by the service description format extension.</para>
</item>
<item>
<para>Configure the service description format extension to run within the serviceDescriptionFormatExtensionTypes section of the configuration file.</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies that a service description format extension runs at one or more extension points. This class cannot be inherited.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute ();" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute (string elementName, string ns, Type extensionPoint1);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="elementName" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="extensionPoint1" Type="System.Type" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class that specifies the XML element and namespace to add when running at the specified extension point.</para>
</summary>
<param name="elementName">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element added to the service description by the service description format extension.</param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The XML namespace for the XML element added to the service description by the service description format extension.</param>
<param name="extensionPoint1">
<attribution license="cc4" from="Microsoft" modified="false" />The extension point at which to run the service description format extension.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute (string elementName, string ns, Type[] extensionPoints);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="elementName" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="extensionPoints" Type="System.Type[]" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class that specifies the XML element and namespace to add when running at the specified extension points.</para>
</summary>
<param name="elementName">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element added to the service description by the service description format extension. </param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The XML namespace for the XML element added to the service description by the service description format extension. </param>
<param name="extensionPoints">
<attribution license="cc4" from="Microsoft" modified="false" />An array of extension points at which to run the service description format extension. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute (string elementName, string ns, Type extensionPoint1, Type extensionPoint2);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="elementName" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="extensionPoint1" Type="System.Type" />
<Parameter Name="extensionPoint2" Type="System.Type" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class that specifies the XML element and namespace to add when running at the specified extension points.</para>
</summary>
<param name="elementName">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element added to the service description by the service description format extension.</param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The XML namespace for the XML element added to the service description by the service description format extension.</param>
<param name="extensionPoint1">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint2">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute (string elementName, string ns, Type extensionPoint1, Type extensionPoint2, Type extensionPoint3);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="elementName" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="extensionPoint1" Type="System.Type" />
<Parameter Name="extensionPoint2" Type="System.Type" />
<Parameter Name="extensionPoint3" Type="System.Type" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class that specifies the XML element and namespace to add when running at the specified extension points.</para>
</summary>
<param name="elementName">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element added to the service description by the service description format extension.</param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The XML namespace for the XML element added to the service description by the service description format extension.</param>
<param name="extensionPoint1">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint2">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint3">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public XmlFormatExtensionAttribute (string elementName, string ns, Type extensionPoint1, Type extensionPoint2, Type extensionPoint3, Type extensionPoint4);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="elementName" Type="System.String" />
<Parameter Name="ns" Type="System.String" />
<Parameter Name="extensionPoint1" Type="System.Type" />
<Parameter Name="extensionPoint2" Type="System.Type" />
<Parameter Name="extensionPoint3" Type="System.Type" />
<Parameter Name="extensionPoint4" Type="System.Type" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.Services.Configuration.XmlFormatExtensionAttribute" /> class that specifies the XML element and namespace to add when running at the specified extension points.</para>
</summary>
<param name="elementName">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element added to the service description by the service description format extension.</param>
<param name="ns">
<attribution license="cc4" from="Microsoft" modified="false" />The XML namespace for the XML element added to the service description by the service description format extension.</param>
<param name="extensionPoint1">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint2">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint3">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension.</param>
<param name="extensionPoint4">
<attribution license="cc4" from="Microsoft" modified="false" />An extension point at which to run the service description format extension. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ElementName">
<MemberSignature Language="C#" Value="public string ElementName { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'string'</value>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the XML element added to the service description by the service description format extension.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ExtensionPoints">
<MemberSignature Language="C#" Value="public Type[] ExtensionPoints { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Type[]</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'Type []'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The list of available types with which a service description format extension can run include those built into ASP.NET and any custom types configured on the Web server. The types built into ASP.NET that can run with a service description format extension are in the following list: </para>
<list type="bullet">
<item>
<para>
<see cref="T:System.Web.Services.Description.Binding" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.OperationBinding" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.FaultBinding" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.InputBinding" />
</para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.OutputBinding" />
</para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.Operation" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.Types" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.Port" /> </para>
</item>
<item>
<para>
<see cref="T:System.Web.Services.Description.ServiceDescription" />
</para>
</item>
</list>
<para>These classes all refer to sections, within a service description, that are generated by ASP.NET.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The stages at which the service description format extension is to run.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Namespace">
<MemberSignature Language="C#" Value="public string Namespace { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'string'</value>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the XML namespace for the XML element added to the service description by the service description format extension.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|