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

setNotificationsEnabled() public method

public setNotificationsEnabled ( int reqSeq, MIDType type, string target, bool enablement ) : void
reqSeq int
type MIDType
target string
enablement bool
return void
      public void setNotificationsEnabled(int reqSeq, MIDType type, string target, bool enablement)
      {
        #if !SILVERLIGHT
        send_setNotificationsEnabled(reqSeq, type, target, enablement);
        recv_setNotificationsEnabled();

        #else
        var asyncResult = Begin_setNotificationsEnabled(null, null, reqSeq, type, target, enablement);
        End_setNotificationsEnabled(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client