public ScopeBindings(string AttributeName, BindingStrategies Strategy)
 {
    this.AttributeName = AttributeName;
    this.Strategy = Strategy;         
 } 
 public ScopeBindings(string AttributeAlias, BindingStrategies Strategy, string TemplateAttributeName)
 {
    this.AttributeName = AttributeAlias;
    this.Strategy = Strategy;         
    this.TemplateAttributeName = TemplateAttributeName;
 } 
 public ScopeBindings(string AttributeAlias, BindingStrategies Strategy, string TemplateAttributeName)
 {
     this.AttributeName         = AttributeAlias;
     this.Strategy              = Strategy;
     this.TemplateAttributeName = TemplateAttributeName;
 }
 public ScopeBindings(string AttributeName)
 {
    this.AttributeName = AttributeName;
    this.Strategy = BindingStrategies.AsString; 
 } 
 public ScopeBindings(string AttributeName)
 {
     this.AttributeName = AttributeName;
     this.Strategy      = BindingStrategies.AsString;
 }
 public ScopeBindings(string AttributeName, BindingStrategies Strategy)
 {
     this.AttributeName = AttributeName;
     this.Strategy      = Strategy;
 }
Ejemplo n.º 7
0
 public ScopeBindings(string ScopeVariableName, BindingStrategies Strategy, string AlternateAttributeName)
 {
     this.ScopeName     = ScopeVariableName;
     this.Strategy      = Strategy;
     this.AttributeName = AlternateAttributeName;
 }
Ejemplo n.º 8
0
 public ScopeBindings(string ScopeVariableName, BindingStrategies Strategy)
 {
     this.ScopeName = ScopeVariableName;
     this.Strategy  = Strategy;
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Binds attribute to scope variable (unidirectionally)
 /// </summary>
 public ScopeBindings(string ScopeVariableName, string AlternateAttributeName)
 {
     this.ScopeName     = ScopeVariableName;
     this.Strategy      = BindingStrategies.Unidirectional;
     this.AttributeName = AlternateAttributeName;
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Binds attribute to scope variable (unidirectionally)
 /// </summary>
 public ScopeBindings(string ScopeVariableName)
 {
     this.ScopeName = ScopeVariableName;
     this.Strategy  = BindingStrategies.Unidirectional;
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Binds attribute to scope variable
 /// </summary>
 public void BindAttribute(string ScopeVariableName, BindingStrategies Strategy, string AlternateAttributeName)
 {
     ScopeAttributes.Add(new ScopeBindings(ScopeVariableName, Strategy, AlternateAttributeName));
 }