WebRequestModuleElement Costruttori

Definizione

Inizializza una nuova istanza della classe WebRequestModuleElement.

Overload

WebRequestModuleElement()

Inizializza una nuova istanza della classe WebRequestModuleElement.

WebRequestModuleElement(String, String)

Inizializza una nuova istanza della classe WebRequestModuleElement con le informazioni sul tipo e sul prefisso URI specificati.

WebRequestModuleElement(String, Type)

Inizializza una nuova istanza della classe WebRequestModuleElement con l'identificatore del tipo e del prefisso URI specificati.

WebRequestModuleElement()

Inizializza una nuova istanza della classe WebRequestModuleElement.

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

Si applica a

WebRequestModuleElement(String, String)

Inizializza una nuova istanza della classe WebRequestModuleElement con le informazioni sul tipo e sul prefisso URI specificati.

public:
 WebRequestModuleElement(System::String ^ prefix, System::String ^ type);
public WebRequestModuleElement (string prefix, string type);
new System.Net.Configuration.WebRequestModuleElement : string * string -> System.Net.Configuration.WebRequestModuleElement
Public Sub New (prefix As String, type As String)

Parametri

prefix
String

Stringa contenente un prefisso URI.

type
String

Stringa contenente le informazioni sul tipo e sull'assembly della classe che gestisce la creazione di richieste di risorse che utilizzano il prefisso URI prefix.

Commenti

Il type parametro contiene il nome completo del tipo seguito da una virgola (,) e dalle informazioni sull'assembly. Gli elementi delle informazioni sull'assembly sono separati da virgole, ad esempio "System.Net.DigestClient, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".

La Prefix proprietà è impostata su prefix e la Type proprietà è impostata su type.

Si applica a

WebRequestModuleElement(String, Type)

Inizializza una nuova istanza della classe WebRequestModuleElement con l'identificatore del tipo e del prefisso URI specificati.

public:
 WebRequestModuleElement(System::String ^ prefix, Type ^ type);
public WebRequestModuleElement (string prefix, Type type);
new System.Net.Configuration.WebRequestModuleElement : string * Type -> System.Net.Configuration.WebRequestModuleElement
Public Sub New (prefix As String, type As Type)

Parametri

prefix
String

Stringa contenente un prefisso URI.

type
Type

Oggetto Type che identifica la classe che gestisce la creazione di richieste che utilizzano il prefisso URI prefix.

Commenti

La Prefix proprietà è impostata su prefix e la Type proprietà è impostata su type.

Si applica a