internal AttributeCallbackBuilder(MutableAttributeTable table, Type callbackType)
 {
     _table        = table;
     _callbackType = callbackType;
 }
Example #2
0
 //
 // Creates a new attribute table given dictionary information
 // from the attribute table builder.
 //
 internal AttributeTable(MutableAttributeTable attributes)
 {
     Fx.Assert(attributes != null, "attributes parameter should not be null");
     _attributes = attributes;
 }
 internal AttributeCallbackBuilder(MutableAttributeTable table, Type callbackType) 
 {
     _table = table;
     _callbackType = callbackType;
 }
Example #4
0
 internal AttributeTable(MutableAttributeTable attributes)
 {
     this._attributes = attributes;
 }
 //
 // Creates a new attribute table given dictionary information
 // from the attribute table builder.
 //
 internal AttributeTable(MutableAttributeTable attributes) 
 {
     Fx.Assert(attributes != null, "attributes parameter should not be null");
     _attributes = attributes;
 }