Skip to content
DocsTry Aspire
DocsTry

LogSubscriber Methods

StructMethods7 members
Represents a log subscriber for a resource.
public struct LogSubscriber
{
public void Deconstruct(
out string Name,
out bool AnySubscribers)
{
// ...
}
}
Namestring
AnySubscribersbool
Equals(object)Section titled Equals(object)overridebool
Indicates whether this instance and a specified object are equal.
public struct LogSubscriber
{
public override bool Equals(
object obj)
{
// ...
}
}
objobjectThe object to compare with the current instance.
booltrue if obj and this instance are the same type and represent the same value; otherwise, false.
Equals(LogSubscriber)Section titled Equals(LogSubscriber)bool
Indicates whether the current object is equal to another object of the same type.
public struct LogSubscriber
{
public bool Equals(
LogSubscriber other)
{
// ...
}
}
otherLogSubscriberAn object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Returns the hash code for this instance.
public struct LogSubscriber
{
public override int GetHashCode()
{
// ...
}
}
intA 32-bit signed integer that is the hash code for this instance.
op_Equality(LogSubscriber, LogSubscriber)Section titled op_Equality(LogSubscriber, LogSubscriber)staticbool
public struct LogSubscriber
{
public static bool operator ==(
LogSubscriber left,
LogSubscriber right)
{
// ...
}
}
op_Inequality(LogSubscriber, LogSubscriber)Section titled op_Inequality(LogSubscriber, LogSubscriber)staticbool
public struct LogSubscriber
{
public static bool operator !=(
LogSubscriber left,
LogSubscriber right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns the fully qualified type name of this instance.
public struct LogSubscriber
{
public override string ToString()
{
// ...
}
}
stringThe fully qualified type name.