コード例 #1
0
ファイル: PingHostCommand.cs プロジェクト: zyonet/Pscx
        protected override void BeginProcessing()
        {
            base.BeginProcessing();

            if (_async.IsPresent)
            {
                _executor = new PingExecutorAsync(this);
            }
            else
            {
                _executor = new PingExecutorSync(this);
            }

            _executor.BeginProcessing();
        }
コード例 #2
0
ファイル: PingHostCommand.cs プロジェクト: nickchal/pash
        protected override void BeginProcessing()
        {
            base.BeginProcessing();

            if (_async.IsPresent)
            {
                _executor = new PingExecutorAsync(this);
            }
            else
            {
                _executor = new PingExecutorSync(this);
            }

            _executor.BeginProcessing();
        }
コード例 #3
0
ファイル: Synchronous.cs プロジェクト: modulexcite/pash-1
 public PingTaskSync(PingExecutor exec, IPAddress address)
     : base(exec, address)
 {
 }
コード例 #4
0
ファイル: Synchronous.cs プロジェクト: nickchal/pash
 public PingTaskSync(PingExecutor exec, IPAddress address)
     : base(exec, address)
 {
 }
コード例 #5
0
ファイル: Synchronous.cs プロジェクト: modulexcite/pash-1
 public PingTaskSync(PingExecutor exec, IPHostEntry host)
     : base(exec, host)
 {
 }
コード例 #6
0
ファイル: PingTaskBase.cs プロジェクト: razaraz/Pscx
 private PingTaskBase(PingExecutor executor)
 {
     _executor = executor;
     _options = new PingOptions(executor.Command.TTL, false);
 }
コード例 #7
0
ファイル: Synchronous.cs プロジェクト: nickchal/pash
 public PingTaskSync(PingExecutor exec, IPHostEntry host)
     : base(exec, host)
 {
 }
コード例 #8
0
ファイル: PingTaskBase.cs プロジェクト: razaraz/Pscx
 protected PingTaskBase(PingExecutor executor, IPAddress address)
     : this(executor)
 {
     _address = address;
 }
コード例 #9
0
ファイル: PingTaskBase.cs プロジェクト: razaraz/Pscx
 protected PingTaskBase(PingExecutor executor, IPHostEntry host)
     : this(executor)
 {
     _host = host;
 }
コード例 #10
0
ファイル: PingTaskBase.cs プロジェクト: xylographe/Pscx
 private PingTaskBase(PingExecutor executor)
 {
     _executor = executor;
     _options  = new PingOptions(executor.Command.TTL, false);
 }
コード例 #11
0
ファイル: PingTaskBase.cs プロジェクト: xylographe/Pscx
 protected PingTaskBase(PingExecutor executor, IPAddress address)
     : this(executor)
 {
     _address = address;
 }
コード例 #12
0
ファイル: PingTaskBase.cs プロジェクト: xylographe/Pscx
 protected PingTaskBase(PingExecutor executor, IPHostEntry host)
     : this(executor)
 {
     _host = host;
 }