Show / Hide Table of Contents

Interface IMetadataAccess

An interface used to access parameter metadata.

Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public interface IMetadataAccess

Properties

View Source

ParameterNames

Gets an enumeration of parameter names.

Declaration
IEnumerable<string> ParameterNames { get; }
Property Value
Type Description
IEnumerable<string>

Methods

View Source

GetParameterMetadata(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.

  • View Source
In this article
Back to top Generated by DocFX