本文整理汇总了C#中Microsoft.Build.Framework.TaskFinishedEventArgs.WriteToStream方法的典型用法代码示例。如果您正苦于以下问题:C# TaskFinishedEventArgs.WriteToStream方法的具体用法?C# TaskFinishedEventArgs.WriteToStream怎么用?C# TaskFinishedEventArgs.WriteToStream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Build.Framework.TaskFinishedEventArgs
的用法示例。
在下文中一共展示了TaskFinishedEventArgs.WriteToStream方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestTaskFinishedEventArgs
public void TestTaskFinishedEventArgs()
{
// Test using reasonable values
TaskFinishedEventArgs genericEvent = new TaskFinishedEventArgs("Message", "HelpKeyword", "ProjectFile", "TaskFile", "TaskName", true);
genericEvent.BuildEventContext = new BuildEventContext(5, 4, 3, 2);
// Serialize
genericEvent.WriteToStream(_writer);
long streamWriteEndPosition = _stream.Position;
// Deserialize and Verify
_stream.Position = 0;
TaskFinishedEventArgs newGenericEvent = new TaskFinishedEventArgs(null, null, null, null, null, false);
newGenericEvent.CreateFromStream(_reader, _eventArgVersion);
long streamReadEndPosition = _stream.Position;
Assert.IsTrue(streamWriteEndPosition == streamReadEndPosition, "Stream End Positions Should Match");
VerifyGenericEventArg(genericEvent, newGenericEvent);
VerifyTaskFinished(genericEvent, newGenericEvent);
//Test using empty strings
_stream.Position = 0;
// Make sure empty strings are passed correctly
genericEvent = new TaskFinishedEventArgs(string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, true);
genericEvent.BuildEventContext = new BuildEventContext(5, 4, 3, 2);
// Serialize
genericEvent.WriteToStream(_writer);
streamWriteEndPosition = _stream.Position;
// Deserialize and Verify
_stream.Position = 0;
newGenericEvent = new TaskFinishedEventArgs(null, null, null, null, null, false);
newGenericEvent.CreateFromStream(_reader, _eventArgVersion);
streamReadEndPosition = _stream.Position;
Assert.IsTrue(streamWriteEndPosition == streamReadEndPosition, "Stream End Positions Should Match");
VerifyGenericEventArg(genericEvent, newGenericEvent);
VerifyTaskFinished(genericEvent, newGenericEvent);
//Test using null strings
_stream.Position = 0;
// Make sure null string are passed correctly
genericEvent = new TaskFinishedEventArgs(null, null, null, null, null, true);
genericEvent.BuildEventContext = null;
// Serialize
genericEvent.WriteToStream(_writer);
streamWriteEndPosition = _stream.Position;
// Deserialize and Verify
_stream.Position = 0;
newGenericEvent = new TaskFinishedEventArgs("Something", "Something", "Something", "Something", "Something", false);
newGenericEvent.CreateFromStream(_reader, _eventArgVersion);
streamReadEndPosition = _stream.Position;
Assert.IsTrue(streamWriteEndPosition == streamReadEndPosition, "Stream End Positions Should Match");
VerifyGenericEventArg(genericEvent, newGenericEvent);
VerifyTaskFinished(genericEvent, newGenericEvent);
}