Ejemplo n.º 1
0
 public ExchangeDeclareParam(string name, string type)
 {
     GuardHelper.CheckStringLength(() => name, 255);
     GuardHelper.CheckStringLength(() => type, 255);
     Name    = name;
     Type    = type;
     Durable = true;
 }