Aqueduct.SitecoreLib.DataAccess.ValueResolvers.NullableResolver.GetEnumValue C# (CSharp) Метод

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

private static GetEnumValue ( Type type, string value ) : object
type System.Type
value string
Результат object
        private static object GetEnumValue (Type type, string value)
        {
            try
            {
                return Enum.Parse (type, value, true);
            }
            catch (Exception)
            {
                return null;
            }
        }