Click or drag to resize
Ab4d.SharpEngine logo

MeshGetMetadata Method

Overload List
 NameDescription
Public methodGetMetadata(String) Gets the object that was stored to the specified key by the SetMetadata(String, Object) method. When the key is not found then null is returned. If you know that the key exists and you know the type, then you can use the generic GetMetadataT(String) method.
Public methodGetMetadataT(String) Gets the object that was stored to the specified key by the SetMetadata(String, Object) method. When the key is not found then ArgumentException is thrown. When the metadata with that key cannot be converted to the target type T, then FormatException is thrown. If you are not sure if the key exist or what type its data is, then use the non-generic GetMetadata(String) that returns object or null.
Top
See Also