Cake.Web.Core.Services.RouteService.GetRoutePart C# (CSharp) Метод

GetRoutePart() публичный Метод

public GetRoutePart ( Cake.Web.Docs.DocumentedMethod method ) : string
method Cake.Web.Docs.DocumentedMethod
Результат string
        public string GetRoutePart(DocumentedMethod method)
        {
            return $"{method.Identity.GetHashCode():X8}".ToLowerInvariant();
        }

Same methods

RouteService::GetRoutePart ( Cake.Web.Docs.DocumentedNamespace @namespace ) : string
RouteService::GetRoutePart ( Cake.Web.Docs.DocumentedProperty property ) : string
RouteService::GetRoutePart ( DocumentedType type ) : string

Usage Example

Пример #1
0
 private string GetUrl(DocumentedNamespace ns)
 {
     return(_service.GetRoutePart(ns));
 }