AssemblyBuilder.GetManifestResourceStream 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다.
오버로드
GetManifestResourceStream(String) |
지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다. |
GetManifestResourceStream(Type, String) |
지정된 형식의 네임스페이스에 의해 범위가 지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다. |
GetManifestResourceStream(String)
- Source:
- AssemblyBuilder.cs
- Source:
- AssemblyBuilder.cs
- Source:
- AssemblyBuilder.cs
지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다.
public:
override System::IO::Stream ^ GetManifestResourceStream(System::String ^ name);
public override System.IO.Stream? GetManifestResourceStream (string name);
public override System.IO.Stream GetManifestResourceStream (string name);
override this.GetManifestResourceStream : string -> System.IO.Stream
Public Overrides Function GetManifestResourceStream (name As String) As Stream
매개 변수
- name
- String
요청된 매니페스트 리소스의 이름입니다.
반환
이 매니페스트 리소스를 나타내는 Stream 입니다.
예외
이 메서드는 현재 지원되지 않습니다.
호출자에게 필요한 권한이 없는 경우
적용 대상
GetManifestResourceStream(Type, String)
- Source:
- AssemblyBuilder.cs
- Source:
- AssemblyBuilder.cs
- Source:
- AssemblyBuilder.cs
지정된 형식의 네임스페이스에 의해 범위가 지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다.
public:
override System::IO::Stream ^ GetManifestResourceStream(Type ^ type, System::String ^ name);
public override System.IO.Stream? GetManifestResourceStream (Type type, string name);
public override System.IO.Stream GetManifestResourceStream (Type type, string name);
override this.GetManifestResourceStream : Type * string -> System.IO.Stream
Public Overrides Function GetManifestResourceStream (type As Type, name As String) As Stream
매개 변수
- type
- Type
해당 네임스페이스가 매니페스트 리소스 이름의 범위를 지정하는 데 사용된 형식입니다.
- name
- String
요청된 매니페스트 리소스의 이름입니다.
반환
이 매니페스트 리소스를 나타내는 Stream 입니다.
예외
이 메서드는 현재 지원되지 않습니다.
호출자에게 필요한 권한이 없는 경우
예제
의 type
전체 이름이 "MyNameSpace.MyClasses"이고 name
"Dot" GetManifestResourceStream
인 경우 는 MyNameSpace.Dot라는 리소스를 검색합니다.
설명
반환 Stream 된 에는 리소스의 시작 부분으로 설정된 파일 포인터가 있습니다.
추가 정보
적용 대상
.NET