Rock.Data.FieldTypeAttribute.FieldTypeAttribute C# (CSharp) Method

FieldTypeAttribute() public method

Initializes a new instance of the FieldTypeAttribute class.
public FieldTypeAttribute ( string fieldTypeGuid, string configKey = null, string configValue = null ) : System
fieldTypeGuid string The field type unique identifier.
configKey string The configuration key.
configValue string The configuration value.
return System
        public FieldTypeAttribute( string fieldTypeGuid, string configKey = null, string configValue = null )
        {
            FieldTypeGuid = new Guid( fieldTypeGuid );
            ConfigurationKey = configKey;
            ConfigurationValue = configValue;
        }
FieldTypeAttribute