class RouteAttribute

in global :: Microsoft . AspNetCore . Components

😔 No documentation found.


public string Url { get; }

The full url of this route (ie "/home/section/page")

public string[] Parts { get; }

The url split into parts (ie "home" "section" "page" )

public static Nullable<ValueTuple<TypeDescription,RouteAttribute>> FindValidTarget( string url, string parentUrl )

Given a URL, check out TypeLibrary and find a valid target

public bool IsUrl( string url )

True if this matches the passed in url. Queries are trimmed and ignored ( ?query=fff ) Variables are tested (but not type matched or anything)

public IEnumerable<ValueTuple<string,string>> ExtractProperties( string url )

Given a Url, check for {properties} and convert them to key values

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public object TypeId { get; }

😔 No documentation found.

public bool Match( object obj )

😔 No documentation found.

public bool IsDefaultAttribute( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public RouteAttribute( string url )

😔 No documentation found.