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

ConversionArguments() public method

Initializes a new instance of the ConversionArguments class.
public ConversionArguments ( string propertyName, Type propertyType, string valueKey ) : System
propertyName string Name of the property.
propertyType System.Type Type of the property.
valueKey string Name of the target.
return System
        public ConversionArguments(string propertyName, Type propertyType, string valueKey)
        {
            this.PropertyName = propertyName;
            this.PropertyType = propertyType;
            this.ValueKey = valueKey;
        }
ConversionArguments