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

findAndAddContactsByUserid() public method

public findAndAddContactsByUserid ( int reqSeq, string userid ) : Contact>.Dictionary
reqSeq int
userid string
return Contact>.Dictionary
      public Dictionary<string, Contact> findAndAddContactsByUserid(int reqSeq, string userid)
      {
        #if !SILVERLIGHT
        send_findAndAddContactsByUserid(reqSeq, userid);
        return recv_findAndAddContactsByUserid();

        #else
        var asyncResult = Begin_findAndAddContactsByUserid(null, null, reqSeq, userid);
        return End_findAndAddContactsByUserid(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client