コード例 #1
0
ファイル: Configure.cs プロジェクト: peteraglen/condep-dsl
 public static void Operation(IOfferRemoteConfiguration remoteConfiguration, RemoteCompositeOperation operation)
 {
     var seqContainer = remoteConfiguration as RemoteConfigurationBuilder;
     seqContainer.AddOperation(operation);
 }
コード例 #2
0
ファイル: Configure.cs プロジェクト: peteraglen/condep-dsl
 public static void Operation(IOfferRemoteOperations remote, RemoteCompositeOperation operation)
 {
     var seqContainer = remote as RemoteCompositeBuilder;
     seqContainer.CompositeSequence.NewCompositeSequence(operation);
 }
コード例 #3
0
ファイル: Configure.cs プロジェクト: peteraglen/condep-dsl
 public static void Operation(IOfferRemoteInstallation installation, RemoteCompositeOperation operation)
 {
     var seqContainer = installation as RemoteInstallationBuilder;
     seqContainer.AddOperation(operation);
 }
コード例 #4
0
ファイル: Configure.cs プロジェクト: peteraglen/condep-dsl
 public static void Operation(IOfferRemoteExecution executor, RemoteCompositeOperation operation)
 {
     var seqContainer = executor as RemoteExecutionBuilder;
     seqContainer.AddOperation(operation);
 }
コード例 #5
0
ファイル: Configure.cs プロジェクト: peteraglen/condep-dsl
 public static void Operation(IOfferRemoteDeployment deployment, RemoteCompositeOperation operation)
 {
     var seqContainer = deployment as RemoteDeploymentBuilder;
     seqContainer.AddOperation(operation);
 }
コード例 #6
0
        public static void Operation(IOfferRemoteConfiguration remoteConfiguration, RemoteCompositeOperation operation)
        {
            var seqContainer = remoteConfiguration as RemoteConfigurationBuilder;

            seqContainer.AddOperation(operation);
        }
コード例 #7
0
        public static void Operation(IOfferRemoteInstallation installation, RemoteCompositeOperation operation)
        {
            var seqContainer = installation as RemoteInstallationBuilder;

            seqContainer.AddOperation(operation);
        }
コード例 #8
0
        public static void Operation(IOfferRemoteDeployment deployment, RemoteCompositeOperation operation)
        {
            var seqContainer = deployment as RemoteDeploymentBuilder;

            seqContainer.AddOperation(operation);
        }
コード例 #9
0
        public static void Operation(IOfferRemoteExecution executor, RemoteCompositeOperation operation)
        {
            var seqContainer = executor as RemoteExecutionBuilder;

            seqContainer.AddOperation(operation);
        }
コード例 #10
0
        public static void Operation(IOfferRemoteOperations remote, RemoteCompositeOperation operation)
        {
            var seqContainer = remote as RemoteCompositeBuilder;

            seqContainer.CompositeSequence.NewCompositeSequence(operation);
        }