Beispiel #1
0
 public static string ToUmbracoAlias(this MethodBase methodBase)
 {
     return(methodBase.CleanCallingMethodName().ToUmbracoAlias());
 }
Beispiel #2
0
        protected IEnumerable <T> Children <T>(MethodBase methodBase) where T : TypedModelBase
        {
            var docTypeAlias = methodBase.CleanCallingMethodName();

            return(Children <T>(docTypeAlias));
        }
Beispiel #3
0
        protected IEnumerable <T> Descendants <T>(MethodBase methodBase) where T : TypedModelBase
        {
            var docTypeAlias = methodBase.CleanCallingMethodName();

            return(Descendants <T>(docTypeAlias));
        }