Interface IRouteMatchContainer
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Represents a container for temporarily storing CustomId wild card matches of a component.
public interface IRouteMatchContainer
Properties
SegmentMatches
Gets the collection of captured route segments in this container.
IEnumerable<IRouteSegmentMatch> SegmentMatches { get; }
Property Value
- IEnumerable<IRouteSegmentMatch>
A collection of captured route segments.
Methods
SetSegmentMatches(IEnumerable<IRouteSegmentMatch>)
Sets the SegmentMatches property of this container.
void SetSegmentMatches(IEnumerable<IRouteSegmentMatch> segmentMatches)
Parameters
segmentMatches
IEnumerable<IRouteSegmentMatch>The collection of captured route segments.