/// <remarks/> public void RelativeMoveAsync(string ProfileToken, PTZVector Translation, PTZSpeed Speed) { this.RelativeMoveAsync(ProfileToken, Translation, Speed, null); }
/// <remarks/> public void RelativeMoveAsync(string ProfileToken, PTZVector Translation, PTZSpeed Speed, object userState) { if ((this.RelativeMoveOperationCompleted == null)) { this.RelativeMoveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRelativeMoveOperationCompleted); } this.InvokeAsync("RelativeMove", new object[] { ProfileToken, Translation, Speed}, this.RelativeMoveOperationCompleted, userState); }
public void RelativeMove(string ProfileToken, PTZVector Translation, PTZSpeed Speed) { this.Invoke("RelativeMove", new object[] { ProfileToken, Translation, Speed}); }
/// <remarks/> public System.IAsyncResult BeginRelativeMove(string ProfileToken, PTZVector Translation, PTZSpeed Speed, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("RelativeMove", new object[] { ProfileToken, Translation, Speed}, callback, asyncState); }
/// <remarks/> public System.IAsyncResult BeginAbsoluteMove(string ProfileToken, PTZVector Position, PTZSpeed Speed, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AbsoluteMove", new object[] { ProfileToken, Position, Speed}, callback, asyncState); }
/// <remarks/> public void AbsoluteMoveAsync(string ProfileToken, PTZVector Position, PTZSpeed Speed) { this.AbsoluteMoveAsync(ProfileToken, Position, Speed, null); }
public void AbsoluteMove(string ProfileToken, PTZVector Position, PTZSpeed Speed) { this.Invoke("AbsoluteMove", new object[] { ProfileToken, Position, Speed}); }