Class BowireMethodChange

Namespace
Kuestenlogik.Bowire.Schemas
Assembly
Kuestenlogik.Bowire.dll

A changed method plus which facet moved. Kind is one of: signature (the callable surface moved — route, invocation type, or request/response shape), deprecation (the deprecated flag flipped while the surface stayed intact), or annotation (a prose-only edit). Detail is a short human line naming the facet(s).

public sealed record BowireMethodChange : IEquatable<BowireMethodChange>
Inheritance
BowireMethodChange
Implements
Inherited Members

Constructors

BowireMethodChange(string, string, string, string)

A changed method plus which facet moved. Kind is one of: signature (the callable surface moved — route, invocation type, or request/response shape), deprecation (the deprecated flag flipped while the surface stayed intact), or annotation (a prose-only edit). Detail is a short human line naming the facet(s).

public BowireMethodChange(string Service, string Method, string Kind, string Detail)

Parameters

Service string
Method string
Kind string
Detail string

Properties

Detail

public string Detail { get; init; }

Property Value

string

Kind

public string Kind { get; init; }

Property Value

string

Method

public string Method { get; init; }

Property Value

string

Service

public string Service { get; init; }

Property Value

string

Methods

Deconstruct(out string, out string, out string, out string)

public void Deconstruct(out string Service, out string Method, out string Kind, out string Detail)

Parameters

Service string
Method string
Kind string
Detail string

Equals(BowireMethodChange?)

public bool Equals(BowireMethodChange? other)

Parameters

other BowireMethodChange

Returns

bool

Equals(object?)

public override bool Equals(object? obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int

ToString()

public override string ToString()

Returns

string

Operators

operator ==(BowireMethodChange?, BowireMethodChange?)

public static bool operator ==(BowireMethodChange? left, BowireMethodChange? right)

Parameters

left BowireMethodChange
right BowireMethodChange

Returns

bool

operator !=(BowireMethodChange?, BowireMethodChange?)

public static bool operator !=(BowireMethodChange? left, BowireMethodChange? right)

Parameters

left BowireMethodChange
right BowireMethodChange

Returns

bool