PrincipalServerDownException Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vytvoří instanci nové instance PrincipalServerDownException třídy.
Přetížení
PrincipalServerDownException() |
Vytvoří instanci nové instance PrincipalServerDownException třídy. |
PrincipalServerDownException(String) |
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou. |
PrincipalServerDownException(SerializationInfo, StreamingContext) |
Zastaralé.
Inicializuje novou instanci PrincipalServerDownException třídy ze zadaných SerializationInfo a StreamingContext instancí. |
PrincipalServerDownException(String, Exception) |
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou a zadanou vnořenou výjimkou. |
PrincipalServerDownException(String, Int32) |
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou a zadaným kódem chyby. |
PrincipalServerDownException(String, Exception, Int32) |
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou, zadanou vnořenou výjimkou a zadaným kódem chyby. |
PrincipalServerDownException(String, Exception, Int32, String) |
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou, zadanou vnořenou výjimkou, zadaným kódem chyby a zadaným názvem serveru. |
PrincipalServerDownException()
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy.
public:
PrincipalServerDownException();
public PrincipalServerDownException ();
Public Sub New ()
Poznámky
Konstruktor bez parametrů inicializuje novou instanci PrincipalServerDownException třídy. Vlastnost Message je inicializována na systémovou zprávu, která popisuje chybu. Tato zpráva bere v potaz aktuální systémovou kulturu. Vlastnost InnerException je inicializována na null
.
Platí pro
PrincipalServerDownException(String)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou.
public:
PrincipalServerDownException(System::String ^ message);
public PrincipalServerDownException (string message);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : string -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Public Sub New (message As String)
Parametry
- message
- String
Chybová zpráva.
Poznámky
Instance PrincipalServerDownException se inicializuje s Message vlastností nastavenou na hodnotu message
. Pokud message
je null
, Message vlastnost se inicializuje na zprávu dodanou systémem.
Platí pro
PrincipalServerDownException(SerializationInfo, StreamingContext)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Upozornění
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Inicializuje novou instanci PrincipalServerDownException třídy ze zadaných SerializationInfo a StreamingContext instancí.
protected:
PrincipalServerDownException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PrincipalServerDownException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected PrincipalServerDownException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametry
- info
- SerializationInfo
A SerializationInfo , který obsahuje informace potřebné k serializaci nové PrincipalServerDownException.
- context
- StreamingContext
A StreamingContext , který obsahuje zdroj serializovaného datového proudu, který je přidružen k novému PrincipalServerDownException.
- Atributy
Platí pro
PrincipalServerDownException(String, Exception)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou a zadanou vnořenou výjimkou.
public:
PrincipalServerDownException(System::String ^ message, Exception ^ innerException);
public PrincipalServerDownException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : string * Exception -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Public Sub New (message As String, innerException As Exception)
Parametry
- message
- String
Text zprávy.
- innerException
- Exception
Vnořená výjimka.
Poznámky
Instance PrincipalServerDownException se inicializuje s Message vlastností nastavenou na hodnotu message
a InnerException vlastnost nastavenou na hodnotu innerException
. Pokud message
je null
, Message vlastnost se inicializuje na zprávu dodanou systémem. Inicializuje InnerException se na null
.
Platí pro
PrincipalServerDownException(String, Int32)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou a zadaným kódem chyby.
public:
PrincipalServerDownException(System::String ^ message, int errorCode);
public PrincipalServerDownException (string message, int errorCode);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : string * int -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Public Sub New (message As String, errorCode As Integer)
Parametry
- message
- String
Text zprávy.
- errorCode
- Int32
Kód chyby.
Poznámky
Instance PrincipalServerDownException se inicializuje s Message vlastností nastavenou na hodnotu message
a ErrorCode vlastnost nastavenou na hodnotu errorCode
. Pokud message
je null
, Message vlastnost se inicializuje na zprávu dodanou systémem.
Platí pro
PrincipalServerDownException(String, Exception, Int32)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou, zadanou vnořenou výjimkou a zadaným kódem chyby.
public:
PrincipalServerDownException(System::String ^ message, Exception ^ innerException, int errorCode);
public PrincipalServerDownException (string message, Exception innerException, int errorCode);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : string * Exception * int -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Public Sub New (message As String, innerException As Exception, errorCode As Integer)
Parametry
- message
- String
Text chybové zprávy.
- innerException
- Exception
Vnořená výjimka.
- errorCode
- Int32
Kód chyby.
Poznámky
Instance PrincipalServerDownException se inicializuje s Message vlastností nastavenou na hodnotu message
a InnerException vlastnost nastavenou na hodnotu innerException
, a privátní errorCode
vlastnost je nastavena na errorCode
hodnotu . Pokud message
je null
, Message vlastnost se inicializuje na zprávu dodanou systémem. Inicializuje InnerException se na null
.
Platí pro
PrincipalServerDownException(String, Exception, Int32, String)
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
- Zdroj:
- exceptions.cs
Vytvoří instanci nové instance PrincipalServerDownException třídy se zadanou chybovou zprávou, zadanou vnořenou výjimkou, zadaným kódem chyby a zadaným názvem serveru.
public:
PrincipalServerDownException(System::String ^ message, Exception ^ innerException, int errorCode, System::String ^ serverName);
public PrincipalServerDownException (string message, Exception innerException, int errorCode, string serverName);
new System.DirectoryServices.AccountManagement.PrincipalServerDownException : string * Exception * int * string -> System.DirectoryServices.AccountManagement.PrincipalServerDownException
Public Sub New (message As String, innerException As Exception, errorCode As Integer, serverName As String)
Parametry
- message
- String
Text zprávy.
- innerException
- Exception
Vnořená výjimka.
- errorCode
- Int32
Kód chyby.
- serverName
- String
Název serveru.
Poznámky
Instance PrincipalServerDownException je inicializována s Message vlastností nastavenou na hodnotu message
a InnerException vlastnost nastavenou na hodnotu innerException
, privátní errorCode
vlastnost je nastavena na errorCode
a privátní serverName
vlastnost je nastavena na serverName
. Pokud message
je null
, Message vlastnost se inicializuje na zprávu dodanou systémem. Inicializuje InnerException se na null
.