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

findAndAddContactsByPhone() public method

public findAndAddContactsByPhone ( int reqSeq, THashSet phones ) : Contact>.Dictionary
reqSeq int
phones THashSet
return Contact>.Dictionary
      public Dictionary<string, Contact> findAndAddContactsByPhone(int reqSeq, THashSet<string> phones)
      {
        #if !SILVERLIGHT
        send_findAndAddContactsByPhone(reqSeq, phones);
        return recv_findAndAddContactsByPhone();

        #else
        var asyncResult = Begin_findAndAddContactsByPhone(null, null, reqSeq, phones);
        return End_findAndAddContactsByPhone(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client