示例#1
0
 public IAbstractHtmlAttributeBinding BuildHtmlAttributeBinding(string name, IAbstractBinding binding, DothtmlAttributeNode dothtmlNode)
 {
     return(new ResolvedHtmlAttributeBinding(name, (ResolvedBinding)binding)
     {
         DothtmlNode = dothtmlNode
     });
 }
示例#2
0
 public IAbstractPropertyBinding BuildPropertyBinding(IPropertyDescriptor property, IAbstractBinding binding, DothtmlAttributeNode sourceAttribute)
 {
     return(new ResolvedPropertyBinding((DotvvmProperty)property, (ResolvedBinding)binding)
     {
         DothtmlNode = sourceAttribute
     });
 }
示例#3
0
 public IAbstractPropertyBinding BuildPropertyBinding(IPropertyDescriptor property, IAbstractBinding binding)
 {
     return new ResolvedPropertyBinding((DotvvmProperty)property, (ResolvedBinding)binding);
 }