Esempio n. 1
0
 /// <remarks/>
 public void RelativeMoveAsync(string ProfileToken, PTZVector Translation, PTZSpeed Speed)
 {
     this.RelativeMoveAsync(ProfileToken, Translation, Speed, null);
 }
Esempio n. 2
0
 /// <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);
 }
Esempio n. 3
0
 public void RelativeMove(string ProfileToken, PTZVector Translation, PTZSpeed Speed)
 {
     this.Invoke("RelativeMove", new object[] {
                 ProfileToken,
                 Translation,
                 Speed});
 }
Esempio n. 4
0
 /// <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);
 }
Esempio n. 5
0
 /// <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);
 }
Esempio n. 6
0
 /// <remarks/>
 public void AbsoluteMoveAsync(string ProfileToken, PTZVector Position, PTZSpeed Speed)
 {
     this.AbsoluteMoveAsync(ProfileToken, Position, Speed, null);
 }
Esempio n. 7
0
 public void AbsoluteMove(string ProfileToken, PTZVector Position, PTZSpeed Speed)
 {
     this.Invoke("AbsoluteMove", new object[] {
                 ProfileToken,
                 Position,
                 Speed});
 }