Adf.Base.Resources.StateResourceProvider.GetString C# (CSharp) Method

GetString() public method

Returns the value from the State corresponding to the specified key.
public GetString ( string key ) : string
key string The key for which the corresponding value is required.
return string
        public string GetString(string key)
        {
            var value = StateManager.Settings[key] as string;

            return value == key ? null : value;
        }

Same methods

StateResourceProvider::GetString ( string key, CultureInfo culture ) : string
StateResourceProvider