You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Discord
- {
- /// <summary>
- /// Represents an object for storing a CustomId wild card match.
- /// </summary>
- public interface IRouteSegmentMatch
- {
- /// <summary>
- /// Gets the captured value of this wild card match.
- /// </summary>
- /// <returns>
- /// The value of this wild card.
- /// </returns>
- string Value { get; }
- }
- }
|