Пример #1
0
 public void Inspect(out Development.SDK.Module.Interfaces.Kernel.Module.ISmallRepositoryItem[] repositoryItems, out Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[] fieldItems, out Development.SDK.Module.Data.Systems.ModuleException[] errors)
 {
     repositoryItems = new Development.SDK.Module.Interfaces.Kernel.Module.ISmallRepositoryItem[0];
     this.Inspect(out fieldItems, out errors);
 }
Пример #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="repositoryItems">The used repository items.</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.ISmallRepositoryItem[] repositoryItems, out Development.SDK.Module.Interfaces.Kernel.Module.IFieldItem[] fieldItems, out Development.SDK.Module.Data.Systems.ModuleException[] errors)
        {
            repositoryItems = new Development.SDK.Module.Interfaces.Kernel.Module.ISmallRepositoryItem[0];

            this.Inspect(processId, processNodeId, parameters, out fieldItems, out errors);
        }