Share via


XsltCompileException 생성자

정의

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

오버로드

XsltCompileException()

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

XsltCompileException(String)

지정된 오류 메시지를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

XsltCompileException(SerializationInfo, StreamingContext)
사용되지 않음.

SerializationInfoStreamingContext 개체의 정보를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

XsltCompileException(String, Exception)

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

XsltCompileException(Exception, String, Int32, Int32)

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

XsltCompileException()

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

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

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

적용 대상

XsltCompileException(String)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

지정된 오류 메시지를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

public:
 XsltCompileException(System::String ^ message);
public XsltCompileException (string message);
new System.Xml.Xsl.XsltCompileException : string -> System.Xml.Xsl.XsltCompileException
Public Sub New (message As String)

매개 변수

message
String

오류를 설명하는 메시지입니다.

적용 대상

XsltCompileException(SerializationInfo, StreamingContext)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

주의

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

SerializationInfoStreamingContext 개체의 정보를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

protected:
 XsltCompileException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XsltCompileException (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 XsltCompileException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xml.Xsl.XsltCompileException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltCompileException
[<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.Xml.Xsl.XsltCompileException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltCompileException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

SerializationInfo의 모든 속성이 포함된 XsltCompileException 개체입니다.

context
StreamingContext

컨텍스트 정보가 포함된 StreamingContext 개체입니다.

특성

적용 대상

XsltCompileException(String, Exception)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 XsltCompileException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

오류를 설명하는 메시지입니다.

innerException
Exception

현재 예외의 원인이 되는 예외이거나, 내부 예외를 지정하지 않았으면 null입니다.

적용 대상

XsltCompileException(Exception, String, Int32, Int32)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

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

public:
 XsltCompileException(Exception ^ inner, System::String ^ sourceUri, int lineNumber, int linePosition);
public XsltCompileException (Exception inner, string sourceUri, int lineNumber, int linePosition);
new System.Xml.Xsl.XsltCompileException : Exception * string * int * int -> System.Xml.Xsl.XsltCompileException
Public Sub New (inner As Exception, sourceUri As String, lineNumber As Integer, linePosition As Integer)

매개 변수

inner
Exception

XsltCompileException을 throw한 Exception입니다.

sourceUri
String

스타일시트의 위치 경로입니다.

lineNumber
Int32

스타일시트에서 오류가 발생한 위치를 나타내는 줄 번호입니다.

linePosition
Int32

스타일시트에서 오류가 발생한 위치를 나타내는 줄 위치입니다.

적용 대상