confluent-kafka-dotnet
Show / Hide Table of Contents

Class Migration

Inheritance
object
Migration
Implements
IEquatable<Migration>
Inherited Members
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.SchemaRegistry
Assembly: Confluent.SchemaRegistry.dll
Syntax
public class Migration : IEquatable<Migration>

Constructors

Migration(RuleMode, Schema, Schema)

Declaration
public Migration(RuleMode ruleMode, Schema source, Schema target)
Parameters
TypeNameDescription
RuleModeruleMode
Schemasource
Schematarget

Properties

RuleMode

Declaration
public RuleMode RuleMode { get; set; }
Property Value
TypeDescription
RuleMode

Source

Declaration
public Schema Source { get; set; }
Property Value
TypeDescription
Schema

Target

Declaration
public Schema Target { get; set; }
Property Value
TypeDescription
Schema

Methods

Equals(Migration)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals(Migration other)
Parameters
TypeNameDescription
Migrationother

An object to compare with this object.

Returns
TypeDescription
bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

Declaration
public override bool Equals(object obj)
Parameters
TypeNameDescription
objectobj

The object to compare with the current object.

Returns
TypeDescription
bool

true if the specified object is equal to the current object; otherwise, false.

Overrides
object.Equals(object)

GetHashCode()

Serves as the default hash function.

Declaration
public override int GetHashCode()
Returns
TypeDescription
int

A hash code for the current object.

Overrides
object.GetHashCode()

Implements

IEquatable<T>
In this article