本文整理汇总了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);
}
示例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);
}
}