LINE.Datatypes.TalkService.Client.getSessions C# (CSharp) Method

getSessions() public method

public getSessions ( ) : List
return List
      public List<LoginSession> getSessions()
      {
        #if !SILVERLIGHT
        send_getSessions();
        return recv_getSessions();

        #else
        var asyncResult = Begin_getSessions(null, null);
        return End_getSessions(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client