Skip to content
DocsTry Aspire
DocsTry

LogLine Methods

StructMethods7 members
Represents a console log line.
Deconstruct(int, string, bool)Section titled Deconstruct(int, string, bool)
public struct LogLine
{
public void Deconstruct(
out int LineNumber,
out string Content,
out bool IsErrorMessage)
{
// ...
}
}
LineNumberint
Contentstring
IsErrorMessagebool
Equals(object)Section titled Equals(object)overridebool
Indicates whether this instance and a specified object are equal.
public struct LogLine
{
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.
Indicates whether the current object is equal to another object of the same type.
public struct LogLine
{
public bool Equals(
LogLine other)
{
// ...
}
}
otherLogLineAn 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 LogLine
{
public override int GetHashCode()
{
// ...
}
}
intA 32-bit signed integer that is the hash code for this instance.
op_Equality(LogLine, LogLine)Section titled op_Equality(LogLine, LogLine)staticbool
public struct LogLine
{
public static bool operator ==(
LogLine left,
LogLine right)
{
// ...
}
}
op_Inequality(LogLine, LogLine)Section titled op_Inequality(LogLine, LogLine)staticbool
public struct LogLine
{
public static bool operator !=(
LogLine left,
LogLine right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns the fully qualified type name of this instance.
public struct LogLine
{
public override string ToString()
{
// ...
}
}
stringThe fully qualified type name.