QueryString() public abstract method

public abstract QueryString ( ) : string
return string
Beispiel #1
0
        public override string QueryString(string strName)
        {
            NFIProperty xProperty = GetPropertyManager().GetProperty(strName);

            if (null != xProperty)
            {
                return(xProperty.QueryString());
            }

            return(NFIDataList.NULL_STRING);
        }
Beispiel #2
0
        public override string QueryPropertyString(string strPropertyName)
        {
            NFIProperty property = mPropertyManager.GetProperty(strPropertyName);

            if (null != property)
            {
                return(property.QueryString());
            }

            return(NFIDataList.NULL_STRING);
        }