当前位置: 首页>>代码示例>>C#>>正文


C# IBus.GetType方法代码示例

本文整理汇总了C#中IBus.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# IBus.GetType方法的具体用法?C# IBus.GetType怎么用?C# IBus.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IBus的用法示例。


在下文中一共展示了IBus.GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetInputQueueName

 private string GetInputQueueName(IBus bus)
 {
     const string memberName = "inputAddress";
     var inputAddressField = bus.GetType().GetField(memberName, BindingFlags.NonPublic | BindingFlags.Instance);
     Assert.IsNotNull(inputAddressField);
     object inputAddress = inputAddressField.GetValue(bus);
     var queueNameProp = inputAddress.GetType().GetProperty("Queue", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
     return queueNameProp.GetValue(inputAddress).ToString();
 }
开发者ID:johnsimons,项目名称:NServiceBusEndpointNameSample,代码行数:9,代码来源:UnitTest1.cs

示例2: PossiblyCopyToAuditQueue

        static void PossiblyCopyToAuditQueue(string auditQueueName, Exception exceptionOrNull, IBus bus, ReceivedTransportMessage message)
        {
            // if an error occurred, don't do anything
            if (exceptionOrNull != null) return;

            // this one will always be non-null - but still
            if (TransactionContext.Current == null)
            {
                log.Warn("Auditor called outside of a proper transaction context!!! This must be an error.");
                return;
            }

            var rebusBus = bus as RebusBus;
            if (rebusBus == null)
            {
                log.Warn("Current IBus is not a RebusBus, it's a {0} - cannot use {0} for auditing, sorry!", bus.GetType().Name);
                return;
            }

            using (var txc = ManagedTransactionContext.Get())
            {
                var messageCopy = message.ToForwardableMessage();

                messageCopy.Headers[Headers.AuditReason] = Headers.AuditReasons.Handled;
                messageCopy.Headers[Headers.AuditSourceQueue] = rebusBus.GetInputQueueAddress();
                messageCopy.Headers[Headers.AuditMessageCopyTime] = RebusTimeMachine.Now().ToString("u");

                rebusBus.InternalSend(new List<string> {auditQueueName}, messageCopy, txc.Context);

                var rebusEvents = rebusBus.Events as RebusEvents;
                if (rebusEvents == null)
                {
                    log.Warn(
                        "Current IRebusEvents is not a RebusEvents, it's a {0} - cannot use {0} for raising auditing events, sorry! (the message was properly audited though, it just turned out to be impossible to raise the MessageAudited event!)");
                    return;
                }

                rebusEvents.RaiseMessageAudited(rebusBus, messageCopy);
            }
        }
开发者ID:nls75,项目名称:Rebus,代码行数:40,代码来源:MessageAuditor.cs


注:本文中的IBus.GetType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。