ModelMetadata.EnumNamesAndValues Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the names and values of all Enum values in UnderlyingOrModelType.
public:
abstract property System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::String ^> ^ EnumNamesAndValues { System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::String ^> ^ get(); };
public abstract System.Collections.Generic.IReadOnlyDictionary<string,string> EnumNamesAndValues { get; }
public abstract System.Collections.Generic.IReadOnlyDictionary<string,string>? EnumNamesAndValues { get; }
member this.EnumNamesAndValues : System.Collections.Generic.IReadOnlyDictionary<string, string>
Public MustOverride ReadOnly Property EnumNamesAndValues As IReadOnlyDictionary(Of String, String)
Property Value
An IReadOnlyDictionary<TKey,TValue> of mappings between Enum field names
and values. null
if IsEnum is false
.