C# 클래스 System.Reflection.Assembly

상속: ICustomAttributeProvider
파일 보기 프로젝트 열기: theolivenbaum/h5 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Assembly
CreateInstance object
CreateQualifiedName string
GetAssembly Assembly
GetExecutingAssembly Assembly
GetType Type
GetTypes Type[]
GetVersion string
Load Assembly

공개 메소드들

메소드 설명
GetCustomAttributes ( ) : object[]

Retrieves a collection of custom attributes that are applied to a specified assembly.

GetCustomAttributes ( Type attributeType ) : object[]

Retrieves a collection of custom attributes of a specified type that are applied to a specified assembly.

GetCustomAttributes ( Type attributeType, bool inherit ) : object[]

Gets the custom attributes for this assembly as specified by type.

GetCustomAttributes ( bool inherit ) : object[]

Gets all the custom attributes for this assembly.

GetManifestResourceData ( Type type, string name ) : byte[]
GetManifestResourceData ( string name ) : byte[]
GetManifestResourceDataAsBase64 ( Type type, string name ) : string
GetManifestResourceDataAsBase64 ( string name ) : string
GetManifestResourceNames ( ) : string[]

Returns the names of all the resources in this assembly.

비공개 메소드들

메소드 설명
Assembly ( )
CreateInstance ( string typeName ) : object
CreateQualifiedName ( string assemblyName, string typeName ) : string
GetAssembly ( Type type ) : Assembly
GetExecutingAssembly ( ) : Assembly
GetType ( string name ) : Type
GetTypes ( ) : Type[]
GetVersion ( ) : string
Load ( string assemblyString ) : Assembly

메소드 상세

GetCustomAttributes() 공개 메소드

Retrieves a collection of custom attributes that are applied to a specified assembly.
public GetCustomAttributes ( ) : object[]
리턴 object[]

GetCustomAttributes() 공개 메소드

Retrieves a collection of custom attributes of a specified type that are applied to a specified assembly.
public GetCustomAttributes ( Type attributeType ) : object[]
attributeType Type The type of attribute to search for.
리턴 object[]

GetCustomAttributes() 공개 메소드

Gets the custom attributes for this assembly as specified by type.
public GetCustomAttributes ( Type attributeType, bool inherit ) : object[]
attributeType Type The type for which the custom attributes are to be returned.
inherit bool This argument is ignored for objects of type Assembly.
리턴 object[]

GetCustomAttributes() 공개 메소드

Gets all the custom attributes for this assembly.
public GetCustomAttributes ( bool inherit ) : object[]
inherit bool This argument is ignored for objects of type Assembly.
리턴 object[]

GetManifestResourceData() 공개 메소드

public GetManifestResourceData ( Type type, string name ) : byte[]
type Type
name string
리턴 byte[]

GetManifestResourceData() 공개 메소드

public GetManifestResourceData ( string name ) : byte[]
name string
리턴 byte[]

GetManifestResourceDataAsBase64() 공개 메소드

public GetManifestResourceDataAsBase64 ( Type type, string name ) : string
type Type
name string
리턴 string

GetManifestResourceDataAsBase64() 공개 메소드

public GetManifestResourceDataAsBase64 ( string name ) : string
name string
리턴 string

GetManifestResourceNames() 공개 메소드

Returns the names of all the resources in this assembly.
public GetManifestResourceNames ( ) : string[]
리턴 string[]