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

fetchOperations() public method

public fetchOperations ( long localRev, int count ) : List
localRev long
count int
return List
      public List<Operation> fetchOperations(long localRev, int count)
      {
        #if !SILVERLIGHT
        send_fetchOperations(localRev, count);
        return recv_fetchOperations();

        #else
        var asyncResult = Begin_fetchOperations(null, null, localRev, count);
        return End_fetchOperations(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client