AssemblyBuilder.GetManifestResourceStream 메서드

정의

지정된 매니페스트 리소스를 이 어셈블리에서 로드합니다.

오버로드

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 된 에는 리소스의 시작 부분으로 설정된 파일 포인터가 있습니다.

추가 정보

적용 대상