本文整理汇总了C#中Microsoft.Build.BuildEngine.BuildPropertyGroup.CreateFromStream方法的典型用法代码示例。如果您正苦于以下问题:C# BuildPropertyGroup.CreateFromStream方法的具体用法?C# BuildPropertyGroup.CreateFromStream怎么用?C# BuildPropertyGroup.CreateFromStream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Build.BuildEngine.BuildPropertyGroup
的用法示例。
在下文中一共展示了BuildPropertyGroup.CreateFromStream方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateFromStream
internal override void CreateFromStream(BinaryReader reader)
{
base.CreateFromStream(reader);
#region EnvironmentVariables
int numberOfVariables = reader.ReadInt32();
environmentVariables = new Hashtable(numberOfVariables);
for (int i = 0; i < numberOfVariables; i++)
{
string key = reader.ReadString();
string variable = reader.ReadString();
environmentVariables.Add(key, variable);
}
#endregion
#region NodeLoggers
if (reader.ReadByte() == 0)
{
nodeLoggers = null;
}
else
{
int numberOfLoggers = reader.ReadInt32();
nodeLoggers = new LoggerDescription[numberOfLoggers];
for (int i = 0; i < numberOfLoggers; i++)
{
LoggerDescription logger = new LoggerDescription();
logger.CreateFromStream(reader);
nodeLoggers[i] = logger;
}
}
#endregion
nodeId = reader.ReadInt32();
parentProcessId = reader.ReadInt32();
#region ParentGlobalProperties
if (reader.ReadByte() == 0)
{
parentGlobalProperties = null;
}
else
{
parentGlobalProperties = new BuildPropertyGroup();
parentGlobalProperties.CreateFromStream(reader);
}
#endregion
toolsetSearchLocations = (ToolsetDefinitionLocations)reader.ReadByte();
parentStartupDirectory = (string)reader.ReadString();
}
示例2: PropertyGroupCustomSerialization
public void PropertyGroupCustomSerialization()
{
BuildPropertyGroup pg = new BuildPropertyGroup();
pg.SetProperty(new BuildProperty("bar", "barval", PropertyType.EnvironmentProperty));
pg.SetProperty(new BuildProperty("baz", "bazval", PropertyType.GlobalProperty));
pg.SetProperty(new BuildProperty("caz", "cazval", PropertyType.ImportedProperty));
pg.SetProperty(new BuildProperty("barb", "barbout", PropertyType.OutputProperty));
pg.SetProperty(new BuildProperty("gaz", "gazout", PropertyType.OutputProperty));
pg.SetProperty(new BuildProperty("foo", "fooout2", PropertyType.OutputProperty));
MemoryStream stream = new MemoryStream();
BinaryWriter writer = new BinaryWriter(stream);
BinaryReader reader = new BinaryReader(stream);
try
{
stream.Position = 0;
pg.WriteToStream(writer);
long streamWriteEndPosition = stream.Position;
stream.Position = 0;
BuildPropertyGroup pg2 = new BuildPropertyGroup();
pg2.CreateFromStream(reader);
long streamReadEndPosition = stream.Position;
Assert.IsTrue(streamWriteEndPosition == streamReadEndPosition, "Stream end positions should be equal");
Assert.AreEqual(6, pg.Count);
Assert.AreEqual("fooout2", pg2["foo"].FinalValueEscaped);
Assert.AreEqual("barval", pg2["bar"].FinalValueEscaped);
Assert.AreEqual("bazval", pg2["baz"].FinalValueEscaped);
Assert.AreEqual("cazval", pg2["caz"].FinalValueEscaped);
Assert.AreEqual("barbout", pg2["barb"].FinalValueEscaped);
Assert.AreEqual("gazout", pg2["gaz"].FinalValueEscaped);
}
finally
{
reader.Close();
writer = null;
stream = null;
}
}