Beispiel #1
0
        /// <summary>
        /// Inspects the node configuration.
        /// </summary>
        /// <param name="processId">Id of the process that contains the node.</param>
        /// <param name="processNodeId">The id of the node to load the config for.</param>
        /// <param name="fieldItems">The used field items.</param>
        /// <param name="errors">The errors that was occured by inspect configuration.</param>
        public void Inspect(Guid processId, Guid processNodeId, Development.SDK.Module.Data.Kernel.Module.NodeParameter[] parameters, out Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[] fieldItems, out Development.SDK.Module.Data.Systems.ModuleException[] errors)
        {
            // Set default value for the field items and errors
            fieldItems = new Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[0];
            errors     = new Development.SDK.Module.Data.Systems.ModuleException[0];

            // TODO: Insert your inspect methods here
        }
Beispiel #2
0
        /// <summary>
        /// Inspects the node configuration.
        /// </summary>
        /// <param name="processId">Id of the process that contains the node.</param>
        /// <param name="processNodeId">The id of the node to load the config for.</param>
        /// <param name="parameters">The configuration parameters.</param>
        /// <param name="fieldItems">The used field items.</param>
        /// <param name="errors">The errors that was occured by inspect configuration.</param>
        public void Inspect(Guid processId, Guid processNodeId, Development.SDK.Module.Data.Kernel.Module.NodeParameter[] parameters, out Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[] fieldItems, out Development.SDK.Module.Data.Systems.ModuleException[] errors)
        {
            // Set default values for output parameter
            fieldItems = new Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[0];
            errors     = new Development.SDK.Module.Data.Systems.ModuleException[0];

            // Inspect configuration
            Controller.ActionNode.ExampleNode.ConfigActionNode.Instance.Inspect(processId, processNodeId, parameters, out fieldItems, out errors);
        }
Beispiel #3
0
 /// <summary>
 /// Inspects the module configuration.
 /// </summary>
 /// <param name="fieldItems">The used field items.</param>
 /// <param name="errors">The errors that was occured by inspect configuration.</param>
 public void Inspect(out Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[] fieldItems, out Development.SDK.Module.Data.Systems.ModuleException[] errors)
 {
     // TODO : Inspect
     fieldItems = new Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[0];
     errors     = new Development.SDK.Module.Data.Systems.ModuleException[0];
 }