|  | GameObjectGetPropertyMetadataT Method (String) | 
            Gets the metadata of the property with the given name.
            
 
Namespace: DigitalRune.GameAssembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
 Syntax
Syntaxpublic static GamePropertyMetadata<T> GetPropertyMetadata<T>(
	string name
)
Public Shared Function GetPropertyMetadata(Of T) ( 
	name As String
) As GamePropertyMetadata(Of T)
public:
generic<typename T>
static GamePropertyMetadata<T>^ GetPropertyMetadata(
	String^ name
)
static member GetPropertyMetadata : 
        name : string -> GamePropertyMetadata<'T> 
Parameters
- name
- Type: SystemString
 The property name.
Type Parameters
- T
- The type of the property value.
Return Value
Type: 
GamePropertyMetadataT
            The property metadata, or 
 if no property with the given 
            
name was defined with 
CreatePropertyT(String, String, String, T).
            
 See Also
See Also