AlternateView 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AlternateView의 새 인스턴스를 초기화합니다.
오버로드
AlternateView(Stream) |
지정된 AlternateView을 사용하여 Stream의 새 인스턴스를 초기화합니다. |
AlternateView(String) |
지정된 파일 이름을 사용하여 AlternateView의 새 인스턴스를 초기화합니다. |
AlternateView(Stream, ContentType) |
지정된 AlternateView 및 Stream을 사용하여 ContentType의 새 인스턴스를 초기화합니다. |
AlternateView(Stream, String) |
지정된 AlternateView과 미디어 형식을 사용하여 Stream의 새 인스턴스를 초기화합니다. |
AlternateView(String, ContentType) |
지정된 파일 이름과 콘텐츠 형식을 사용하여 AlternateView의 새 인스턴스를 초기화합니다. |
AlternateView(String, String) |
지정된 파일 이름과 미디어 형식을 사용하여 AlternateView의 새 인스턴스를 초기화합니다. |
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
AlternateView(Stream)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 AlternateView을 사용하여 Stream의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::IO::Stream ^ contentStream);
public AlternateView (System.IO.Stream contentStream);
new System.Net.Mail.AlternateView : System.IO.Stream -> System.Net.Mail.AlternateView
Public Sub New (contentStream As Stream)
매개 변수
- contentStream
- Stream
이 보기에 대한 내용이 들어 있는 스트림입니다.
예외
contentStream
은 null
입니다.
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
AlternateView(String)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 파일 이름을 사용하여 AlternateView의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::String ^ fileName);
public AlternateView (string fileName);
new System.Net.Mail.AlternateView : string -> System.Net.Mail.AlternateView
Public Sub New (fileName As String)
매개 변수
- fileName
- String
이 대체 보기의 내용이 들어 있는 파일 이름입니다.
예외
fileName
이(가) null
인 경우
호출자에게 필요한 권한이 없는 경우
I/O 오류(예: 디스크 오류)가 발생한 경우
액세스 권한이 Write 또는 ReadWrite이고 파일 핸들이 읽기 전용 액세스로 설정된 경우와 같이 지정된 파일 핸들에 대해 운영 체제에서 액세스 요청을 허용하지 않는 경우
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
AlternateView(Stream, ContentType)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 AlternateView 및 Stream을 사용하여 ContentType의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::IO::Stream ^ contentStream, System::Net::Mime::ContentType ^ contentType);
public AlternateView (System.IO.Stream contentStream, System.Net.Mime.ContentType? contentType);
public AlternateView (System.IO.Stream contentStream, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AlternateView : System.IO.Stream * System.Net.Mime.ContentType -> System.Net.Mail.AlternateView
Public Sub New (contentStream As Stream, contentType As ContentType)
매개 변수
- contentStream
- Stream
이 첨부 파일의 내용이 들어 있는 스트림입니다.
- contentType
- ContentType
콘텐츠의 형식입니다.
예외
contentStream
이(가) null
인 경우
contentType
은(는) 올바른 값이 아닙니다.
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
AlternateView(Stream, String)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 AlternateView과 미디어 형식을 사용하여 Stream의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::IO::Stream ^ contentStream, System::String ^ mediaType);
public AlternateView (System.IO.Stream contentStream, string? mediaType);
public AlternateView (System.IO.Stream contentStream, string mediaType);
new System.Net.Mail.AlternateView : System.IO.Stream * string -> System.Net.Mail.AlternateView
Public Sub New (contentStream As Stream, mediaType As String)
매개 변수
- contentStream
- Stream
이 첨부 파일의 내용이 들어 있는 스트림입니다.
- mediaType
- String
콘텐츠의 MIME 미디어 형식입니다.
예외
contentStream
이(가) null
인 경우
mediaType
은(는) 올바른 값이 아닙니다.
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
AlternateView(String, ContentType)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 파일 이름과 콘텐츠 형식을 사용하여 AlternateView의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::String ^ fileName, System::Net::Mime::ContentType ^ contentType);
public AlternateView (string fileName, System.Net.Mime.ContentType? contentType);
public AlternateView (string fileName, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AlternateView : string * System.Net.Mime.ContentType -> System.Net.Mail.AlternateView
Public Sub New (fileName As String, contentType As ContentType)
매개 변수
- fileName
- String
이 대체 보기의 내용이 들어 있는 파일 이름입니다.
- contentType
- ContentType
콘텐츠의 형식입니다.
예외
fileName
이(가) null
인 경우
contentType
은(는) 올바른 값이 아닙니다.
호출자에게 필요한 권한이 없는 경우
I/O 오류(예: 디스크 오류)가 발생한 경우
액세스 권한이 Write 또는 ReadWrite이고 파일 핸들이 읽기 전용 액세스로 설정된 경우와 같이 지정된 파일 핸들에 대해 운영 체제에서 액세스 요청을 허용하지 않는 경우
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
AlternateView(String, String)
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
- Source:
- AlternateView.cs
지정된 파일 이름과 미디어 형식을 사용하여 AlternateView의 새 인스턴스를 초기화합니다.
public:
AlternateView(System::String ^ fileName, System::String ^ mediaType);
public AlternateView (string fileName, string? mediaType);
public AlternateView (string fileName, string mediaType);
new System.Net.Mail.AlternateView : string * string -> System.Net.Mail.AlternateView
Public Sub New (fileName As String, mediaType As String)
매개 변수
- fileName
- String
이 대체 보기의 내용이 들어 있는 파일 이름입니다.
- mediaType
- String
콘텐츠의 MIME 미디어 형식입니다.
예외
fileName
이(가) null
인 경우
mediaType
은(는) 올바른 값이 아닙니다.
호출자에게 필요한 권한이 없는 경우
I/O 오류(예: 디스크 오류)가 발생한 경우
액세스 권한이 Write 또는 ReadWrite이고 파일 핸들이 읽기 전용 액세스로 설정된 경우와 같이 지정된 파일 핸들에 대해 운영 체제에서 액세스 요청을 허용하지 않는 경우
설명
클래스 호출의 AlternateView 새 instance 메서드 중 CreateAlternateViewFromString 하나를 호출하여 초기화됩니다.
적용 대상
.NET