다음을 통해 공유


PrintServerException 생성자

정의

PrintServerException 클래스의 새 인스턴스를 초기화합니다.

오버로드

PrintServerException()

PrintServerException 클래스의 새 인스턴스를 초기화합니다.

PrintServerException(String)

특정 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

PrintServerException(SerializationInfo, StreamingContext)

특정 PrintServerExceptionSerializationInfo를 제공하는 StreamingContext 클래스의 새 인스턴스를 초기화합니다. 이 생성자는 보호되어 있습니다.

PrintServerException(String, Exception)

예외의 내부 원인을 비롯하여 특정 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

PrintServerException(Int32, String, String)

특정 오류 코드, 오류 조건 및 인쇄 서버 이름을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

PrintServerException(Int32, String, String, Exception)

예외의 내부 원인을 비롯하여 특정 인쇄 서버 이름, 오류 코드 및 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

PrintServerException()

PrintServerException 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

PrintServerException(String)

특정 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

public:
 PrintServerException(System::String ^ message);
public PrintServerException (string message);
new System.Printing.PrintServerException : string -> System.Printing.PrintServerException
Public Sub New (message As String)

매개 변수

message
String

오류 조건을 설명하는 String입니다.

적용 대상

PrintServerException(SerializationInfo, StreamingContext)

특정 PrintServerExceptionSerializationInfo를 제공하는 StreamingContext 클래스의 새 인스턴스를 초기화합니다. 이 생성자는 보호되어 있습니다.

protected:
 PrintServerException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PrintServerException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Printing.PrintServerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Printing.PrintServerException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

개체를 직렬화 또는 역직렬화하는 데 필요한 데이터입니다.

context
StreamingContext

serialize된 스트림의 소스와 대상이 포함된 컨텍스트입니다.

적용 대상

PrintServerException(String, Exception)

예외의 내부 원인을 비롯하여 특정 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

public:
 PrintServerException(System::String ^ message, Exception ^ innerException);
public PrintServerException (string message, Exception innerException);
new System.Printing.PrintServerException : string * Exception -> System.Printing.PrintServerException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

오류 조건을 설명하는 String입니다.

innerException
Exception

PrintServerException을 일으킨 내부 오류 조건입니다.

적용 대상

PrintServerException(Int32, String, String)

특정 오류 코드, 오류 조건 및 인쇄 서버 이름을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

public:
 PrintServerException(int errorCode, System::String ^ message, System::String ^ serverName);
public PrintServerException (int errorCode, string message, string serverName);
new System.Printing.PrintServerException : int * string * string -> System.Printing.PrintServerException
Public Sub New (errorCode As Integer, message As String, serverName As String)

매개 변수

errorCode
Int32

특정 예외에 할당된 코드화된 숫자 값인 HRESULT로 해석되는 Int32입니다.

message
String

오류 조건을 설명하는 String입니다.

serverName
String

오류 조건이 발생할 때 액세스하고 있던 인쇄 서버의 이름입니다.

적용 대상

PrintServerException(Int32, String, String, Exception)

예외의 내부 원인을 비롯하여 특정 인쇄 서버 이름, 오류 코드 및 오류 조건을 제공하는 PrintServerException 클래스의 새 인스턴스를 초기화합니다.

public:
 PrintServerException(int errorCode, System::String ^ message, System::String ^ serverName, Exception ^ innerException);
public PrintServerException (int errorCode, string message, string serverName, Exception innerException);
new System.Printing.PrintServerException : int * string * string * Exception -> System.Printing.PrintServerException
Public Sub New (errorCode As Integer, message As String, serverName As String, innerException As Exception)

매개 변수

errorCode
Int32

특정 예외에 할당된 코드화된 숫자 값인 HRESULT로 해석되는 Int32입니다.

message
String

오류 조건을 설명하는 String입니다.

serverName
String

오류 조건이 발생할 때 액세스하고 있던 인쇄 서버의 이름입니다.

innerException
Exception

PrintServerException을 일으킨 내부 조건입니다.

적용 대상