本文整理汇总了C#中DomNode.AsAll方法的典型用法代码示例。如果您正苦于以下问题:C# DomNode.AsAll方法的具体用法?C# DomNode.AsAll怎么用?C# DomNode.AsAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DomNode
的用法示例。
在下文中一共展示了DomNode.AsAll方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoveNode
/// <summary>
/// Performs custom actions for a node that has been removed from the DOM subtree</summary>
/// <param name="node">Removed node</param>
protected override void RemoveNode(DomNode node)
{
// route all other histories back into a local history
foreach (HistoryContext historyContext in node.AsAll<HistoryContext>())
if (historyContext != m_historyContext)
{
m_childHistoryContexts.Remove(historyContext);
historyContext.History = new CommandHistory();
}
}
示例2: AddNode
/// <summary>
/// Performs custom actions for a node that has been added to the DOM subtree</summary>
/// <param name="node">Added node</param>
protected override void AddNode(DomNode node)
{
// route all other histories into the global one
foreach (HistoryContext historyContext in node.AsAll<HistoryContext>())
if (historyContext != m_historyContext)
{
m_childHistoryContexts.Add(historyContext);
historyContext.History = m_historyContext.History;
}
}
示例3: AddNode
/// <summary>
/// Performs custom actions for a node that has been added to the DOM node subtree</summary>
/// <param name="node">Added node</param>
protected override void AddNode(DomNode node)
{
foreach (HistoryContext historyContext in node.AsAll<HistoryContext>())
{
// Disable automatically combining attribute setting operations, as operations such as grouping pin index changes better run its course
historyContext.PendingSetOperationLifetime = TimeSpan.Zero;
m_historyContexts.Add(historyContext);
}
base.AddNode(node);
}
示例4: AddNode
/// <summary>
/// Performs custom actions for a node that has been added to the DOM node subtree</summary>
/// <param name="node">Added node</param>
protected override void AddNode(DomNode node)
{
foreach (HistoryContext historyContext in node.AsAll<HistoryContext>())
{
//Alan: re-enabled historyContext's merge feature.
// It was disabled with the below with comment.
// But from the commit comment it seems that the feature was
// disabled because of some functional test failure in a particular ATF base tool (creature editor).
//
// Disable automatically combining attribute setting operations, as operations such as grouping pin index changes better run its course
//historyContext.PendingSetOperationLifetime = TimeSpan.Zero;
m_historyContexts.Add(historyContext);
}
base.AddNode(node);
}
示例5: RemoveNode
/// <summary>
/// Performs custom actions for a node that has been removed from the DOM node subtree</summary>
/// <param name="node">Removed node</param>
protected override void RemoveNode(DomNode node)
{
foreach (HistoryContext historyContext in node.AsAll<HistoryContext>())
m_historyContexts.Remove(historyContext);
base.RemoveNode(node);
}
示例6: TestDuplicateExtensionInfo
public void TestDuplicateExtensionInfo()
{
var ext1 = new ExtensionInfo<TestAdapter1>("foo");
var ext2 = new ExtensionInfo<TestAdapter2>("foo");
var domType = new DomNodeType(
"test",
null,
EmptyEnumerable<AttributeInfo>.Instance,
EmptyEnumerable<ChildInfo>.Instance,
new ExtensionInfo[] { ext1, ext2 });
var domNode = new DomNode(domType);
object resultExt1 = domNode.GetExtension(ext1);
object resultExt2 = domNode.GetExtension(ext2);
Assert.IsTrue(resultExt1 is TestAdapter1);
Assert.IsTrue(resultExt2 is TestAdapter2);
object[] decorators = domNode.GetDecorators(typeof(object)).ToArray();
Assert.IsTrue(
decorators.Length == 2 &&
decorators[0] == resultExt1 &&
decorators[1] == resultExt2);
DomNodeAdapter[] extensions = domNode.AsAll<DomNodeAdapter>().ToArray();
Assert.IsTrue(
extensions.Length == 2 &&
extensions[0] == resultExt1 &&
extensions[1] == resultExt2);
// Searching by name is a problem, though. The search is ambiguous.
// See tracker item for discussion: http://tracker.ship.scea.com/jira/browse/WWSATF-522
Assert.Throws<InvalidOperationException>(() => domType.GetExtensionInfo("foo"));
}
示例7: AddNode
/// <summary>
/// Performs custom actions for a node that has been added to the DOM subtree</summary>
/// <param name="node">Added node</param>
/// <remarks>Method overrides must call the base method.</remarks>
protected override void AddNode(DomNode node)
{
foreach (IValidationContext validationContext in node.AsAll<IValidationContext>())
{
validationContext.Beginning += validationContext_Beginning;
validationContext.Ending += validationContext_Ending;
validationContext.Ended += validationContext_Ended;
validationContext.Cancelled += validationContext_Cancelled;
}
}
示例8: RemoveNode
/// <summary>
/// Performs custom actions for a node that has been removed from the DOM subtree</summary>
/// <param name="node">Removed node</param>
protected override void RemoveNode(DomNode node)
{
foreach (IHistoryContext context in node.AsAll<IHistoryContext>())
context.DirtyChanged -= History_DirtyChanged;
}