コード例 #1
0
        protected override RawConfigInfo GetConfigration()
        {
            var config = new RawConfigInfo
            {
                NeedArgs = false
            };

            return(config);
        }
コード例 #2
0
        protected override RawConfigInfo GetConfigration()
        {
            var config = new RawConfigInfo();

            config.NeedArgs     = true;
            config.TemplateArgs = new[] {
                new RawArg {
                    Name = "Arg1", Type = RawTypes.StringType
                },
                new RawArg {
                    Name = "Arg2", Type = RawTypes.NumberType
                }
            };
            return(config);
        }