BuildIt.Config.Core.Extensions.AppConfigurationMapperExtensions.HasFormat C# (CSharp) Method

HasFormat() public static method

public static HasFormat ( this configValue, string format ) : AppConfigurationMapperAttributes
configValue this
format string
return BuildIt.Config.Core.Models.AppConfigurationMapperAttributes
        public static AppConfigurationMapperAttributes HasFormat(this AppConfigurationMapperAttributes configValue, string format)
        {
            if (configValue == null) return null;

            configValue.Format = format;

            return configValue;
        }
    }
AppConfigurationMapperExtensions