/// <remarks/>
 public void DevicePropertyModifyAsync(string Username, string Password, DeviceProperties[] DeviceProperties, object userState)
 {
     if ((this.DevicePropertyModifyOperationCompleted == null)) {
         this.DevicePropertyModifyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDevicePropertyModifyOperationCompleted);
     }
     this.InvokeAsync("DevicePropertyModify", new object[] {
                 Username,
                 Password,
                 DeviceProperties}, this.DevicePropertyModifyOperationCompleted, userState);
 }
 public void DevicePropertyModify(string Username, string Password, DeviceProperties[] DeviceProperties)
 {
     this.Invoke("DevicePropertyModify", new object[] {
                 Username,
                 Password,
                 DeviceProperties});
 }
 /// <remarks/>
 public void DevicePropertyModifyAsync(string Username, string Password, DeviceProperties[] DeviceProperties)
 {
     this.DevicePropertyModifyAsync(Username, Password, DeviceProperties, null);
 }
 /// <remarks/>
 public System.IAsyncResult BeginDevicePropertyModify(string Username, string Password, DeviceProperties[] DeviceProperties, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("DevicePropertyModify", new object[] {
                 Username,
                 Password,
                 DeviceProperties}, callback, asyncState);
 }