Interface IMetadataAccess
An interface used to access parameter metadata.
Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public interface IMetadataAccess
Properties
View SourceParameterNames
Gets an enumeration of parameter names.
Declaration
IEnumerable<string> ParameterNames { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Methods
View SourceGetParameterMetadata(string)
Gets the metadata for a parameter.
Declaration
ParameterMetadata? GetParameterMetadata(string parameterName)
Parameters
Type | Name | Description |
---|---|---|
string | parameterName | The parameter name. |
Returns
Type | Description |
---|---|
ParameterMetadata | The metadata, if it exists. |