Udostępnij za pośrednictwem


SecurityElement Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy SecurityElement.

Przeciążenia

SecurityElement(String)

Inicjuje SecurityElement nowe wystąpienie klasy przy użyciu określonego tagu.

SecurityElement(String, String)

Inicjuje SecurityElement nowe wystąpienie klasy z określonym tagiem i tekstem.

SecurityElement(String)

Źródło:
SecurityElement.cs
Źródło:
SecurityElement.cs
Źródło:
SecurityElement.cs

Inicjuje SecurityElement nowe wystąpienie klasy przy użyciu określonego tagu.

public:
 SecurityElement(System::String ^ tag);
public SecurityElement (string tag);
new System.Security.SecurityElement : string -> System.Security.SecurityElement
Public Sub New (tag As String)

Parametry

tag
String

Nazwa tagu elementu XML.

Wyjątki

Parametr tag ma wartość null.

Parametr tag jest nieprawidłowy w pliku XML.

Przykłady

Poniższy kod przedstawia użycie konstruktora SecurityElement do utworzenia nowego SecurityElement obiektu. Ten przykład kodu jest częścią większego przykładu udostępnionego SecurityElement dla klasy .

SecurityElement^ windowsRoleElement = gcnew SecurityElement( L"WindowsMembership.WindowsRole" );
SecurityElement windowsRoleElement =
    new SecurityElement("WindowsMembership.WindowsRole");
Dim windowsRoleElement As New SecurityElement("WindowsMembership.WindowsRole")

Uwagi

Parametr tag musi składać się z prawidłowej nazwy tagu XML. Użyj polecenia Escape , aby usunąć nieprawidłowe znaki z ciągu.

Dotyczy

SecurityElement(String, String)

Źródło:
SecurityElement.cs
Źródło:
SecurityElement.cs
Źródło:
SecurityElement.cs

Inicjuje SecurityElement nowe wystąpienie klasy z określonym tagiem i tekstem.

public:
 SecurityElement(System::String ^ tag, System::String ^ text);
public SecurityElement (string tag, string? text);
public SecurityElement (string tag, string text);
new System.Security.SecurityElement : string * string -> System.Security.SecurityElement
Public Sub New (tag As String, text As String)

Parametry

tag
String

Nazwa tagu elementu XML.

text
String

Zawartość tekstowa w elemecie .

Wyjątki

Parametr tag ma wartość null.

Parametr tag lub text parametr jest nieprawidłowy w pliku XML.

Uwagi

text Jeśli parametr jest null tym konstruktorem, tworzy element identyczny z konstruktorem bez parametrów.

Dotyczy