Aspose.Tasks.Examples.CSharp.WorkingWithProjects.CreatingReadingAndSaving.IgnoreInvalidCharactersDuringloadingProject.CustomDurationHandler C# (CSharp) Метод

CustomDurationHandler() приватный статический Метод

private static CustomDurationHandler ( object sender, ParseErrorArgs args ) : object
sender object
args ParseErrorArgs
Результат object
        private static object CustomDurationHandler(object sender, ParseErrorArgs args)
        {
            Regex regex = new Regex("[*]{2}(\\d+)Hrs(\\d+)Mins(\\d+)Secs[*]{2}");
            if (args.FieldType == typeof(TimeSpan))
            {
                Debug.Print("Object field : {0}, Invalid value : {1}", args.FieldName, args.InvalidValue);
                string duration = regex.Replace(args.InvalidValue, "PT$1H$2M$3S");
                TimeSpan newValue = Duration.ParseTimeSpan(duration);
                Debug.Print("New value : {0}", newValue);
                return newValue;
            }
            // Here we handle only TimeSpan instances, so rethrow original exception with other types
            throw args.Exception;
        }
        // ExEnd:IgnoreInvalidCharactersDuringloadingProject
IgnoreInvalidCharactersDuringloadingProject