Skip to content
Docs Try Aspire

LogLine Methods

Struct Methods 7 members
Represents a console log line.
public struct LogLine
{
public void Deconstruct(
out int LineNumber,
out string Content,
out bool IsErrorMessage)
{
// ...
}
}
LineNumber int
Content string
IsErrorMessage bool
Equals(object) Section titled Equals(object) override bool
Indicates whether this instance and a specified object are equal.
public struct LogLine
{
public override bool Equals(
object obj)
{
// ...
}
}
obj object The object to compare with the current instance.
bool true 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)
{
// ...
}
}
other LogLine An object to compare with this object.
bool true if the current object is equal to the other parameter; otherwise, false.
GetHashCode Section titled GetHashCode override int
Returns the hash code for this instance.
public struct LogLine
{
public override int GetHashCode()
{
// ...
}
}
int A 32-bit signed integer that is the hash code for this instance.
op_Equality(LogLine, LogLine) Section titled op_Equality(LogLine, LogLine) static bool
public struct LogLine
{
public static bool operator ==(
LogLine left,
LogLine right)
{
// ...
}
}
left LogLine
right LogLine
op_Inequality(LogLine, LogLine) Section titled op_Inequality(LogLine, LogLine) static bool
public struct LogLine
{
public static bool operator !=(
LogLine left,
LogLine right)
{
// ...
}
}
left LogLine
right LogLine
ToString Section titled ToString override string
Returns the fully qualified type name of this instance.
public struct LogLine
{
public override string ToString()
{
// ...
}
}
string The fully qualified type name.