fCraft.IPKeyAttribute.Process C# (CSharp) Method

Process() public method

public Process ( string value ) : string
value string
return string
        public override string Process( string value )
        {
            if ( value.Length == 0 ) {
                return GetBlankValueSubstitute().ToString();
            } else {
                return value;
            }
        }