コード例 #1
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 /// <remarks/>
 public void RelativeMoveAsync(string ProfileToken, PTZVector Translation, PTZSpeed Speed)
 {
     this.RelativeMoveAsync(ProfileToken, Translation, Speed, null);
 }
コード例 #2
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 /// <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);
 }
コード例 #3
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 public void RelativeMove(string ProfileToken, PTZVector Translation, PTZSpeed Speed)
 {
     this.Invoke("RelativeMove", new object[] {
                 ProfileToken,
                 Translation,
                 Speed});
 }
コード例 #4
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 /// <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);
 }
コード例 #5
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 /// <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);
 }
コード例 #6
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 /// <remarks/>
 public void AbsoluteMoveAsync(string ProfileToken, PTZVector Position, PTZSpeed Speed)
 {
     this.AbsoluteMoveAsync(ProfileToken, Position, Speed, null);
 }
コード例 #7
0
ファイル: ptz.cs プロジェクト: dong777/zkonvif
 public void AbsoluteMove(string ProfileToken, PTZVector Position, PTZSpeed Speed)
 {
     this.Invoke("AbsoluteMove", new object[] {
                 ProfileToken,
                 Position,
                 Speed});
 }