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

reportProfile() public method

public reportProfile ( long syncOpRevision, Profile profile ) : void
syncOpRevision long
profile Profile
return void
      public void reportProfile(long syncOpRevision, Profile profile)
      {
        #if !SILVERLIGHT
        send_reportProfile(syncOpRevision, profile);
        recv_reportProfile();

        #else
        var asyncResult = Begin_reportProfile(null, null, syncOpRevision, profile);
        End_reportProfile(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client