Ejemplo n.º 1
0
 /// <summary>
 /// Check current instance is type of specified type.
 /// </summary>
 public bool IsInstanceOf(TypeInfo *typeInfo)
 {
     Runtime.ValidateRefCounted(this);
     return(UrhoObject_IsInstanceOf0(handle, typeInfo));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Check current type is type of specified type.
 /// </summary>
 public static bool IsTypeOf(TypeInfo *typeInfo)
 {
     Runtime.Validate(typeof(UrhoObject));
     return(UrhoObject_IsTypeOf0(typeInfo));
 }
Ejemplo n.º 3
0
 internal static extern bool UrhoObject_IsInstanceOf0(IntPtr handle, TypeInfo *typeInfo);
Ejemplo n.º 4
0
 internal static extern bool UrhoObject_IsTypeOf0(TypeInfo *typeInfo);