BitmapReader.Attributes.DefaultSettingAttribute.DefaultSettingAttribute C# (CSharp) Method

DefaultSettingAttribute() public method

public DefaultSettingAttribute ( string name, object defaultValue ) : System
name string
defaultValue object
return System
        public DefaultSettingAttribute(string name, object defaultValue)
        {
            this._defaultValue = defaultValue;
            this._name = name;
        }
DefaultSettingAttribute