2 types derived from RuleAttribute
System.Workflow.Activities (2)
Rules\RuleAttributes.cs (2)
29
public abstract class RuleReadWriteAttribute :
RuleAttribute
296
public sealed class RuleInvokeAttribute :
RuleAttribute
17 references to RuleAttribute
System.Workflow.Activities (17)
Rules\Expressions.cs (8)
362
object[] attrs = method.GetCustomAttributes(typeof(
RuleAttribute
), true);
369
foreach (
RuleAttribute
ruleAttr in attrs)
1134
object[] attrs = pi.GetCustomAttributes(typeof(
RuleAttribute
), true);
1141
foreach (
RuleAttribute
ruleAttr in attrs)
1419
object[] attrs = mi.GetCustomAttributes(typeof(
RuleAttribute
), true);
1426
foreach (
RuleAttribute
ruleAttr in attrs)
2403
object[] attrs = pi.GetCustomAttributes(typeof(
RuleAttribute
), true);
2410
foreach (
RuleAttribute
ruleAttr in attrs)
Rules\References.cs (3)
78
object[] attrs = member.GetCustomAttributes(typeof(
RuleAttribute
), true);
81
RuleAttribute
[] ruleAttrs = (
RuleAttribute
[])attrs;
Rules\RuleAttributes.cs (6)
361
object[] attrs = mi.GetCustomAttributes(typeof(
RuleAttribute
), true);
364
foreach (
RuleAttribute
invokedRuleAttr in attrs)
424
object[] attrs = mi.GetCustomAttributes(typeof(
RuleAttribute
), true);
427
RuleAttribute
[] ruleAttrs = (
RuleAttribute
[])attrs;
430
RuleAttribute
ruleAttr = ruleAttrs[i];