Class RuleElement
Defines a Rule Configuration Element
Inheritance
System.Object
System.Configuration.ConfigurationElement
RuleElement
Inherited Members
System.Configuration.ConfigurationElement.Init()
System.Configuration.ConfigurationElement.IsModified()
System.Configuration.ConfigurationElement.ResetModified()
System.Configuration.ConfigurationElement.IsReadOnly()
System.Configuration.ConfigurationElement.SetReadOnly()
System.Configuration.ConfigurationElement.ListErrors(System.Collections.IList)
System.Configuration.ConfigurationElement.InitializeDefault()
System.Configuration.ConfigurationElement.Reset(System.Configuration.ConfigurationElement)
System.Configuration.ConfigurationElement.Equals(System.Object)
System.Configuration.ConfigurationElement.GetHashCode()
System.Configuration.ConfigurationElement.SetPropertyValue(System.Configuration.ConfigurationProperty, System.Object, System.Boolean)
System.Configuration.ConfigurationElement.Unmerge(System.Configuration.ConfigurationElement, System.Configuration.ConfigurationElement, System.Configuration.ConfigurationSaveMode)
System.Configuration.ConfigurationElement.SerializeToXmlElement(System.Xml.XmlWriter, System.String)
System.Configuration.ConfigurationElement.SerializeElement(System.Xml.XmlWriter, System.Boolean)
System.Configuration.ConfigurationElement.DeserializeElement(System.Xml.XmlReader, System.Boolean)
System.Configuration.ConfigurationElement.OnRequiredPropertyNotFound(System.String)
System.Configuration.ConfigurationElement.PostDeserialize()
System.Configuration.ConfigurationElement.PreSerialize(System.Xml.XmlWriter)
System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedAttribute(System.String, System.String)
System.Configuration.ConfigurationElement.OnDeserializeUnrecognizedElement(System.String, System.Xml.XmlReader)
System.Configuration.ConfigurationElement.GetTransformedTypeString(System.String)
System.Configuration.ConfigurationElement.GetTransformedAssemblyString(System.String)
System.Configuration.ConfigurationElement.LockAttributes
System.Configuration.ConfigurationElement.LockAllAttributesExcept
System.Configuration.ConfigurationElement.LockElements
System.Configuration.ConfigurationElement.LockAllElementsExcept
System.Configuration.ConfigurationElement.LockItem
System.Configuration.ConfigurationElement.Item[System.Configuration.ConfigurationProperty]
System.Configuration.ConfigurationElement.Item[System.String]
System.Configuration.ConfigurationElement.Properties
System.Configuration.ConfigurationElement.ElementInformation
System.Configuration.ConfigurationElement.EvaluationContext
System.Configuration.ConfigurationElement.ElementProperty
System.Configuration.ConfigurationElement.HasContext
System.Configuration.ConfigurationElement.CurrentConfiguration
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Quark.CMSAdapters.Core.Data
Assembly: Quark.CMSAdapters.Core.dll
Syntax
[Serializable]
public class RuleElement : ConfigurationElement
Constructors
RuleElement()
Initializes a new instance of the RuleElement class.
Declaration
public RuleElement()
Properties
Condition
Gets or sets the condition.
Declaration
[ConfigurationProperty("condition", IsRequired = false)]
public string Condition { get; set; }
Property Value
Type | Description |
---|---|
System.String | The condition. |
ExternalMethodIds
Gets or sets the external method ids.
Declaration
[ConfigurationProperty("externalMethodIds", IsRequired = true)]
public string ExternalMethodIds { get; set; }
Property Value
Type | Description |
---|---|
System.String | The external method ids. |
Id
Gets or sets the identifier.
Declaration
[ConfigurationProperty("id", IsRequired = true)]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The identifier. |
Policy
Gets or sets the policy.
Declaration
[ConfigurationProperty("policy", IsRequired = true)]
public RulePolicies Policy { get; set; }
Property Value
Type | Description |
---|---|
RulePolicies | The policy. |
Trigger
Gets or sets the trigger.
Declaration
[ConfigurationProperty("trigger", IsRequired = true)]
public RuleTriggers Trigger { get; set; }
Property Value
Type | Description |
---|---|
RuleTriggers | The trigger. |