Method | Description | |
---|---|---|
GetGenericArguments ( this type ) : System.Type[] | ||
GetInterfaces ( this type ) : System.Type[] | ||
GetProperties ( this type ) : System.Reflection.PropertyInfo[] |
Returns all the public properties of the specified type. This method emulates the built-in method of the Type class which is not available on Windows Runtime. Note that, unlike the built-in Type method, this method does not return properties defined in any of the base types. However, this should be sufficient for our public types, which have to be sealed on Windows Runtime. |
|
IsAbstract ( this type ) : bool | ||
IsGenericType ( this type ) : bool |
public static GetGenericArguments ( this type ) : System.Type[] | ||
type | this | |
return | System.Type[] |
public static GetInterfaces ( this type ) : System.Type[] | ||
type | this | |
return | System.Type[] |
public static GetProperties ( this type ) : System.Reflection.PropertyInfo[] | ||
type | this | |
return | System.Reflection.PropertyInfo[] |
public static IsAbstract ( this type ) : bool | ||
type | this | |
return | bool |
public static IsGenericType ( this type ) : bool | ||
type | this | |
return | bool |