ConfigurationElement Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe ConfigurationElement.
protected:
ConfigurationElement();
protected ConfigurationElement ();
Protected Sub New ()
Exemples
L’exemple suivant montre comment utiliser un constructeur personnalisé.
// Constructor allowing name, url, and port to be specified.
public UrlConfigElement(String newName,
String newUrl, int newPort)
{
Name = newName;
Url = newUrl;
Port = newPort;
}
' Constructor allowing name, url, and port to be specified.
Public Sub New(ByVal newName As String, _
ByVal newUrl As String, _
ByVal newPort As Integer)
Name = newName
Url = newUrl
Port = newPort
End Sub
Remarques
Vous créez une nouvelle instance de la ConfigurationElement classe, par exemple, chaque fois que votre application doit ajouter un nouvel élément à la collection associéeConfigurationElementCollection.