Пример #1
0
 public LeaseLostException(Microsoft.ServiceBus.Messaging.Lease lease, Exception innerException) : base(null, innerException)
 {
     this.Lease = lease;
 }
Пример #2
0
 protected LeaseLostException(SerializationInfo info, StreamingContext context) : base(info, context)
 {
     this.Lease = (Microsoft.ServiceBus.Messaging.Lease)info.GetValue("Lease", typeof(Microsoft.ServiceBus.Messaging.Lease));
 }
Пример #3
0
 public LeaseLostException(Microsoft.ServiceBus.Messaging.Lease lease)
 {
     this.Lease = lease;
 }