confluent-kafka-dotnet
Show / Hide Table of Contents

Class RuleRegistry

A rule registry.

Inheritance
object
RuleRegistry
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.SchemaRegistry
Assembly: Confluent.SchemaRegistry.dll
Syntax
public static class RuleRegistry

Methods

GetRuleActions()

Declaration
public static List<IRuleAction> GetRuleActions()
Returns
Type Description
List<IRuleAction>

GetRuleExecutors()

Declaration
public static List<IRuleExecutor> GetRuleExecutors()
Returns
Type Description
List<IRuleExecutor>

RegisterRuleAction(IRuleAction)

Declaration
public static void RegisterRuleAction(IRuleAction action)
Parameters
Type Name Description
IRuleAction action

RegisterRuleExecutor(IRuleExecutor)

Declaration
public static void RegisterRuleExecutor(IRuleExecutor executor)
Parameters
Type Name Description
IRuleExecutor executor

TryGetRuleAction(string, out IRuleAction)

Declaration
public static bool TryGetRuleAction(string name, out IRuleAction action)
Parameters
Type Name Description
string name
IRuleAction action
Returns
Type Description
bool

TryGetRuleExecutor(string, out IRuleExecutor)

Declaration
public static bool TryGetRuleExecutor(string name, out IRuleExecutor executor)
Parameters
Type Name Description
string name
IRuleExecutor executor
Returns
Type Description
bool
In this article