Class MemberSelectionRuleBase
Base class for member selection rules.
Inheritance
System.Object
MemberSelectionRuleBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Extend
Assembly:Extend.dll
Syntax
public abstract class MemberSelectionRuleBase : IMemberSelectionRule
Constructors
| Improve this Doc View SourceMemberSelectionRuleBase(String, String)
Initializes a new instance of the MemberSelectionRuleBase class.
Declaration
protected MemberSelectionRuleBase(string name, string description)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the rule. |
System.String | description | The description of the rule. |
Properties
| Improve this Doc View SourceRuleDescription
Gets the description of the rule.
Declaration
public string RuleDescription { get; }
Property Value
Type | Description |
---|---|
System.String | The description of the rule. |
Implements
| Improve this Doc View SourceRuleName
Gets the name of the rule.
Declaration
public string RuleName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the rule. |
Implements
Methods
| Improve this Doc View SourceGetSelectionResult(IMemberInformation)
Gets the selection result for the given member.
Declaration
public abstract MemberSelectionResult GetSelectionResult(IMemberInformation member)
Parameters
Type | Name | Description |
---|---|---|
IMemberInformation | member | The member to get the selection result for. |
Returns
Type | Description |
---|---|
MemberSelectionResult | Returns the selection result for the given member. |