Esempio n. 1
0
 public DynamicEntity()
 {
     Extensions
     .AddProperty <int>("Number")
     .AddProperty <string>("String")
     .AddProperty <SimpleClass>("Simple");
 }
        public void DynamicProperties()
        {
            PropertiesExecuted = true;

            Extensions.AddProperty<int>("abc")
                .AddProperty<int>("x");
        }
Esempio n. 3
0
 void AddProperty(AmqpSymbol symbol, object value)
 {
     Extensions.AddProperty((Attach)AmqpLinkSettings, symbol, value);
 }