Module Methods
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
The Module type exposes the following members.
| Name | Description | |
|---|---|---|
|
Equals | Determines whether this module and the specified object are equal. (Overrides Object.Equals(Object).) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
|
GetCustomAttributes(Boolean) | Returns all custom attributes. |
|
GetCustomAttributes(Type, Boolean) | Returns custom attributes of the specified type. |
|
GetField(String) | Returns the global field that has the specified name. |
|
GetField(String, BindingFlags) | Returns the global field that has the specified name and binding attributes. |
|
GetFields() | Returns the global fields defined on the module. |
|
GetFields(BindingFlags) | Returns the global fields that are defined on the module and that match the specified binding flags. |
|
GetHashCode | Returns the hash code for this instance. (Overrides Object.GetHashCode().) |
|
GetMethod(String) | Returns the global method that has the specified name. |
|
GetMethod(String, Type[]) | Returns the global method that matches the specified name and parameter types. |
|
GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) | Returns the global method that has the specified name, binding information, calling convention, and parameter types and modifiers. |
|
GetMethodImpl | In a derived class, provides the implementation for the GetMethod method overloads. |
|
GetMethods() | Returns the global methods defined on the module. |
|
GetMethods(BindingFlags) | Returns the global methods that are defined on the module and that match the specified binding flags. |
|
GetType() | Gets the Type of the current instance. (Inherited from Object.) |
|
GetType(String) | Returns the specified type, performing a case-sensitive search. |
|
GetType(String, Boolean) | Returns the specified type, searching the module with the specified case sensitivity. |
|
GetType(String, Boolean, Boolean) | Returns the specified type, specifying whether to make a case-sensitive search of the module and whether to throw an exception if the type cannot be found. |
|
GetTypes | Returns all the types defined within this module. |
|
IsDefined | Determines if the specified attribute type is applied to this module. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
ResolveMethod(Int32) | Returns the method or constructor that is identified by the specified metadata token. |
|
ResolveMethod(Int32, Type[], Type[]) | Returns the method or constructor that is identified by the specified metadata token, in the context defined by the specified generic type parameters. |
|
ResolveString | Returns the string that is identified by the specified metadata token. |
|
ResolveType(Int32) | Returns the type that is identified by the specified metadata token. |
|
ResolveType(Int32, Type[], Type[]) | Returns the type that is identified by the specified metadata token, in the context defined by the specified generic type parameters. |
|
ToString | Returns the name of the module. (Overrides Object.ToString().) |
| Name | Description | |
|---|---|---|
|
GetCustomAttribute(Type) | Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified module. (Defined by CustomAttributeExtensions.) |
|
GetCustomAttribute<T>() | Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified module. (Defined by CustomAttributeExtensions.) |
|
GetCustomAttributes() | Overloaded. Retrieves a collection of custom attributes that are applied to a specified module. (Defined by CustomAttributeExtensions.) |
|
GetCustomAttributes(Type) | Overloaded. Retrieves a collection of custom attributes of a specified type that are applied to a specified module. (Defined by CustomAttributeExtensions.) |
|
GetCustomAttributes<T>() | Overloaded. Retrieves a collection of custom attributes of a specified type that are applied to a specified module. (Defined by CustomAttributeExtensions.) |
|
IsDefined | Indicates whether custom attributes of a specified type are applied to a specified module. (Defined by CustomAttributeExtensions.) |
Show: