Exemplo n.º 1
0
 public static Control NewLink(this IMasonBuilderContext context, string name, Uri href, string title = null, string contentType = null)
 {
     return(context.NewLink(name, href.AbsoluteUriNullable(), title, contentType));
 }
Exemplo n.º 2
0
 public static Control NewJsonFilesAction(this IMasonBuilderContext context, string name, Uri href, string jsonFile, string title = null, string description = null, string schema = null, Uri schemaUrl = null, object template = null, string method = "POST")
 {
     return(NewJsonFilesAction(context, name, href.AbsoluteUriNullable(), jsonFile, title, description, schema, schemaUrl, template, method));
 }
Exemplo n.º 3
0
 public static Control NewVoidAction(this IMasonBuilderContext context, string name, Uri href, string title = null, string description = null, string method = null)
 {
     return(NewVoidAction(context, name, href.AbsoluteUriNullable(), title, description, method));
 }