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


C# CancelEventArgs.GetType方法代码示例

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


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

示例1: FiringEvent_MustAcquireMessageWithMessageFactory

        public void FiringEvent_MustAcquireMessageWithMessageFactory()
        {
            this.SetupManagedEventBroker();

            CancelEventArgs cancelEventArgs = new CancelEventArgs(true);
            const HandlerRestriction HandlerRestriction = HandlerRestriction.Asynchronous;
            const string SimpleTopic = "topic://Simple";
            const string SerializedTopic = "SomeData";

            var serializer = this.GetSerializer();
            var messageFactory = this.GetMessageFactory();
            var message = new Mock<IEventFired>();
            message.SetupAllProperties();

            var eventTopic = new Mock<IEventTopicInfo>();
            eventTopic.SetupGet(topic => topic.Uri).Returns(SimpleTopic);

            var publication = new Mock<IPublication>();
            
            publication.SetupGet(p => p.HandlerRestriction).Returns(HandlerRestriction);

            serializer.Setup(s => s.Serialize(It.IsAny<CancelEventArgs>())).Returns(SerializedTopic);

            messageFactory
                .Setup(f => f.CreateEventFiredMessage(It.IsAny<Action<IEventFired>>()))
                .Callback((Action<IEventFired> initialization) => initialization(message.Object))
                .Returns(message.Object);

            this.SetupTopicAcceptedByStrategy(eventTopic);

            this.testee.FiringEvent(eventTopic.Object, publication.Object, this, cancelEventArgs);

            Assert.Equal(HandlerRestriction, message.Object.HandlerRestriction);
            Assert.Equal(SimpleTopic, message.Object.Topic);
            Assert.Equal(SerializedTopic, message.Object.EventArgs);
            Assert.Equal(cancelEventArgs.GetType().AssemblyQualifiedName, message.Object.EventArgsType);
            Assert.Equal(this.testee.TestHostedEventBrokerIdentification, message.Object.EventBrokerIdentification);
            Assert.Equal(this.distributedEventBrokerIdentification, message.Object.DistributedEventBrokerIdentification);
        }
开发者ID:hmuralt,项目名称:appccelerate,代码行数:39,代码来源:DistributedEventBrokerExtensionBaseTest.cs

示例2: Write42_CancelEventArgs

 private void Write42_CancelEventArgs(string n, string ns, CancelEventArgs o, bool isNullable, bool needType)
 {
     if (o == null)
     {
         if (isNullable)
         {
             base.WriteNullTagLiteral(n, ns);
         }
     }
     else
     {
         if (!needType)
         {
             System.Type type = o.GetType();
             if (type != typeof(CancelEventArgs))
             {
                 if (type != typeof(ProcessItemEventArgs))
                 {
                     throw base.CreateUnknownTypeException(o);
                 }
                 this.Write43_ProcessItemEventArgs(n, ns, (ProcessItemEventArgs) o, isNullable, true);
                 return;
             }
         }
         base.WriteStartElement(n, ns, o, false, null);
         if (needType)
         {
             base.WriteXsiType("CancelEventArgs", "");
         }
         base.WriteElementStringRaw("Cancel", "", XmlConvert.ToString(o.Cancel));
         base.WriteEndElement(o);
     }
 }
开发者ID:shankithegreat,项目名称:commanderdotnet,代码行数:33,代码来源:XmlSerializationWriter1.cs


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