Skip to content
DocsTry Aspire
DocsTry

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)
{
// ...
}
}
MethodHttpMethod
Pathstring
AuthenticationPostaAuthentication
IsImplementedbool
Documentationstring?
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record PostaEndpoint
{
public override bool Equals(
object? obj)
{
// ...
}
}
objobject?The object to compare with the current object.
booltrue if the specified object is equal to the current object; otherwise, false.
Equals(PostaEndpoint?)Section titled Equals(PostaEndpoint?)bool
Indicates whether the current object is equal to another object of the same type.
public record PostaEndpoint
{
public bool Equals(
PostaEndpoint? other)
{
// ...
}
}
otherPostaEndpoint?An object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public record PostaEndpoint
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(PostaEndpoint?, PostaEndpoint?)Section titled op_Equality(PostaEndpoint?, PostaEndpoint?)staticbool
public record PostaEndpoint
{
public static bool operator ==(
PostaEndpoint? left,
PostaEndpoint? right)
{
// ...
}
}
op_Inequality(PostaEndpoint?, PostaEndpoint?)Section titled op_Inequality(PostaEndpoint?, PostaEndpoint?)staticbool
public record PostaEndpoint
{
public static bool operator !=(
PostaEndpoint? left,
PostaEndpoint? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record PostaEndpoint
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.