Ejemplo n.º 1
0
        public IEncodedString DslType(DocumentedMethod method)
        {
            bool isPropertyAlias;

            if (method.IsCakeAlias(out isPropertyAlias))
            {
                return(isPropertyAlias
                    ? new HtmlEncodedString("Property")
                    : new HtmlEncodedString("Method"));
            }
            throw new InvalidOperationException("Unknown DSL alias type.");
        }