IsValid() static private method

static private IsValid ( Playable playable ) : bool
playable Playable
return bool
コード例 #1
0
 /// <summary>
 /// <para>Returns true if the Playable is valid. A playable can be invalid if it was disposed. This is different from a Null playable..</para>
 /// </summary>
 public unsafe bool IsValid() =>
 Playables.IsValid(*((Playable *)this));
コード例 #2
0
 public unsafe bool IsValid()
 {
     return(Playables.IsValid(*((Playable *)this)));
 }
コード例 #3
0
 public bool IsValid()
 {
     return(Playables.IsValid(this));
 }