GSoft.Dynamite.Binding.EntityBindingDetail.EntityBindingDetail C# (CSharp) Method

EntityBindingDetail() public method

Initializes a new instance of the EntityBindingDetail class.
public EntityBindingDetail ( PropertyInfo entityProperty, string valueKey, IConverter converter, BindingType bindingType ) : System.Reflection
entityProperty System.Reflection.PropertyInfo The entity property.
valueKey string The value key.
converter IConverter The converter.
bindingType BindingType Type of the binding.
return System.Reflection
        public EntityBindingDetail(PropertyInfo entityProperty, string valueKey, IConverter converter, BindingType bindingType)
        {
            this.EntityProperty = entityProperty;
            this.ValueKey = valueKey;
            this.Converter = converter;
            this.BindingType = bindingType;
        }
EntityBindingDetail