CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
BrukenRulesNode.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="BusinessRulesNode.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Holds Node properties for BrokenRulesTree.</summary>
7//-----------------------------------------------------------------------using System;
8using System.Collections.Generic;
9using System.Linq;
10using System.Text;
11
12namespace Csla.Rules
13{
17 public class BrokenRulesNode
18 {
23 public object Parent { get; internal set; }
24
29 public object Node { get; internal set; }
30
35 public BrokenRulesCollection BrokenRules { get; internal set; }
36
41 public object Object { get; internal set; }
42 }
43}
A collection of currently broken rules.
Holds broken rules for an Node in the BrokenRulesTree.
object Node
Gets the node key.
object Parent
Gets the parent key.
object Object
Gets the Business Object.
BrokenRulesCollection BrokenRules
Gets the broken rules for this node.