HoloToolkit.Sharing.Session.Leave C# (CSharp) 메소드

Leave() 공개 메소드

public Leave ( ) : void
리턴 void
  public virtual void Leave() {
    SharingClientPINVOKE.Session_Leave(swigCPtr);
  }

Usage Example

예제 #1
0
 /// <summary>
 ///  Leave the current session.
 /// </summary>
 public void LeaveCurrentSession()
 {
     using (Session currentSession = GetCurrentSession())
     {
         if (currentSession != null)
         {
             currentSession.Leave();
         }
     }
 }