LineSharp.Datatypes.TalkService.Client.getAllContactIds C# (CSharp) Method

getAllContactIds() public method

public getAllContactIds ( ) : List
return List
      public List<string> getAllContactIds()
      {
        #if !SILVERLIGHT
        send_getAllContactIds();
        return recv_getAllContactIds();

        #else
        var asyncResult = Begin_getAllContactIds(null, null);
        return End_getAllContactIds(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client