ServiceClientGenerator.Enumeration.Customize C# (CSharp) Method

Customize() private method

private Customize ( string typeName, string propertyName ) : string
typeName string
propertyName string
return string
        private string Customize(string typeName, string propertyName)
        {
            var custom = this.model.Customizations.GetPropertyModifier(typeName, propertyName);
            if (custom != null)
                return custom.EmitName;

            return propertyName;
        }