SoapExtensionTypeElement Constructors

Definition

Initializes a new instance of the SoapExtensionTypeElement class.

Overloads

SoapExtensionTypeElement()

Initializes a new instance of the SoapExtensionTypeElement class.

SoapExtensionTypeElement(String, Int32, PriorityGroup)

Initializes a new instance of the SoapExtensionTypeElement class.

SoapExtensionTypeElement(Type, Int32, PriorityGroup)

Initializes a new instance of the SoapExtensionTypeElement class.

SoapExtensionTypeElement()

Initializes a new instance of the SoapExtensionTypeElement class.

public:
 SoapExtensionTypeElement();
public SoapExtensionTypeElement ();
Public Sub New ()

Applies to

SoapExtensionTypeElement(String, Int32, PriorityGroup)

Initializes a new instance of the SoapExtensionTypeElement class.

public:
 SoapExtensionTypeElement(System::String ^ type, int priority, System::Web::Services::Configuration::PriorityGroup group);
public SoapExtensionTypeElement (string type, int priority, System.Web.Services.Configuration.PriorityGroup group);
new System.Web.Services.Configuration.SoapExtensionTypeElement : string * int * System.Web.Services.Configuration.PriorityGroup -> System.Web.Services.Configuration.SoapExtensionTypeElement
Public Sub New (type As String, priority As Integer, group As PriorityGroup)

Parameters

type
String

Specifies the SOAP extension class to add.

priority
Int32

Indicates the relative order in which a SOAP extension runs when multiple SOAP extensions are specified. Within each group, the priority attribute distinguishes the overall relative priority of the SOAP extension. A lower priority number indicates a higher priority for the SOAP extension. The lowest possible value for the priority attribute is 1.

group
PriorityGroup

Along with priority, specifies the relative order in which a SOAP extension runs when multiple SOAP extensions are configured to run.

Applies to

SoapExtensionTypeElement(Type, Int32, PriorityGroup)

Initializes a new instance of the SoapExtensionTypeElement class.

public:
 SoapExtensionTypeElement(Type ^ type, int priority, System::Web::Services::Configuration::PriorityGroup group);
public SoapExtensionTypeElement (Type type, int priority, System.Web.Services.Configuration.PriorityGroup group);
new System.Web.Services.Configuration.SoapExtensionTypeElement : Type * int * System.Web.Services.Configuration.PriorityGroup -> System.Web.Services.Configuration.SoapExtensionTypeElement
Public Sub New (type As Type, priority As Integer, group As PriorityGroup)

Parameters

type
Type

Specifies the SOAP extension class to add.

priority
Int32

Indicates the relative order in which a SOAP extension runs when multiple SOAP extensions are specified.

group
PriorityGroup

Along with priority, specifies the relative order in which a SOAP extension runs when multiple SOAP extensions are configured to run.

Applies to