예제 #1
0
        public PipelineData Process(PipelineData Input)
        {
            bool willIgnore = false;

            try
            {
                if (LibraryInfo.GetFlag(FeatureFlags.Pipeline_IgnoreError) == 1)
                {
                    willIgnore = true;
                }
            }
            catch (Exception)
            {
                //Ignore
            }
            return(Process(Input, willIgnore));
        }