public ResultObject SendMessage(RdsMessageRecipient[] recipients, string text, int itemId, int rdsCollectionId, string userName) { return RemoteDesktopServicesController.SendMessage(recipients, text, itemId, rdsCollectionId, userName); }
/// <remarks/> public void SendMessageAsync(RdsMessageRecipient[] recipients, string text, object userState) { if ((this.SendMessageOperationCompleted == null)) { this.SendMessageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendMessageOperationCompleted); } this.InvokeAsync("SendMessage", new object[] { recipients, text}, this.SendMessageOperationCompleted, userState); }
/// <remarks/> public System.IAsyncResult BeginSendMessage(RdsMessageRecipient[] recipients, string text, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("SendMessage", new object[] { recipients, text}, callback, asyncState); }
/// <remarks/> public void SendMessageAsync(RdsMessageRecipient[] recipients, string text) { this.SendMessageAsync(recipients, text, null); }
public void SendMessage(RdsMessageRecipient[] recipients, string text) { this.Invoke("SendMessage", new object[] { recipients, text}); }