| | | 1 | | // Copyright (c) Microsoft. All rights reserved. |
| | | 2 | | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
| | | 3 | | |
| | | 4 | | namespace Microsoft.Azure.ServiceBus.Amqp |
| | | 5 | | { |
| | | 6 | | using Microsoft.Azure.Amqp; |
| | | 7 | | using System; |
| | | 8 | | |
| | | 9 | | sealed class ActiveSendReceiveClientLink : ActiveClientLinkObject |
| | | 10 | | { |
| | | 11 | | public ActiveSendReceiveClientLink(AmqpLink link, Uri endpointUri, string[] audience, string[] requiredClaims, D |
| | 0 | 12 | | : base(link, endpointUri, audience, requiredClaims, authorizationValidUntilUtc) |
| | | 13 | | { |
| | 0 | 14 | | this.Link = link; |
| | 0 | 15 | | } |
| | | 16 | | |
| | 0 | 17 | | public AmqpLink Link { get; } |
| | | 18 | | |
| | 0 | 19 | | public override AmqpConnection Connection => this.Link.Session.Connection; |
| | | 20 | | } |
| | | 21 | | } |