PostaEndpoint Methods
RecordMethods8 members
Describes a Posta API operation.
public record PostaEndpoint{ public PostaEndpoint <Clone>$() { // ... }}Deconstruct(HttpMethod, string, PostaAuthentication, bool, string?)Section titled Deconstruct(HttpMethod, string, PostaAuthentication, bool, string?)public record PostaEndpoint{ public void Deconstruct( out HttpMethod Method, out string Path, out PostaAuthentication Authentication, out bool IsImplemented, out string? Documentation) { // ... }}Parameters
Determines whether the specified object is equal to the current object.
public record PostaEndpoint{ public override bool Equals( object? obj) { // ... }}Parameters
objobject?The object to compare with the current object.Returns
booltrue if the specified object is equal to the current object; otherwise, false.Indicates whether the current object is equal to another object of the same type.
public record PostaEndpoint{ public bool Equals( PostaEndpoint? other) { // ... }}Parameters
otherPostaEndpoint?An object to compare with this object.Returns
booltrue if the current object is equal to the other parameter; otherwise, false.Serves as the default hash function.
public record PostaEndpoint{ public override int GetHashCode() { // ... }}Returns
intA hash code for the current object.op_Equality(PostaEndpoint?, PostaEndpoint?)Section titled op_Equality(PostaEndpoint?, PostaEndpoint?)staticboolpublic record PostaEndpoint{ public static bool operator ==( PostaEndpoint? left, PostaEndpoint? right) { // ... }}Parameters
leftPostaEndpoint?rightPostaEndpoint?op_Inequality(PostaEndpoint?, PostaEndpoint?)Section titled op_Inequality(PostaEndpoint?, PostaEndpoint?)staticboolpublic record PostaEndpoint{ public static bool operator !=( PostaEndpoint? left, PostaEndpoint? right) { // ... }}Parameters
leftPostaEndpoint?rightPostaEndpoint?Returns a string that represents the current object.
public record PostaEndpoint{ public override string ToString() { // ... }}Returns
stringA string that represents the current object.