Adf.Base.Resources.StateResourceProvider.GetString C# (CSharp) 메소드

GetString() 공개 메소드

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.
리턴 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