Exemple #1
0
 public void AmqpSendLinkCreateStart(string clientId, MessagingEntityType?entityType, string entityPath)
 {
     if (this.IsEnabled())
     {
         this.AmqpSendLinkCreateStart(clientId, entityType?.ToString() ?? string.Empty, entityPath);
     }
 }
Exemple #2
0
 public void AmqpReceiveLinkCreateStart(string clientId, bool isRequestResponseLink, MessagingEntityType?entityType, string entityPath)
 {
     if (this.IsEnabled())
     {
         this.AmqpReceiveLinkCreateStart(clientId, isRequestResponseLink.ToString(), entityType?.ToString() ?? string.Empty, entityPath);
     }
 }