Skip to content
Docs Try Aspire

PowerShellVariableReferenceAnnotation<T> Methods

Record Methods 8 members
Represents a PowerShell variable reference annotation.
public record PowerShellVariableReferenceAnnotation<T>
{
public virtual PowerShellVariableReferenceAnnotation<T> <Clone>$()
{
// ...
}
}
public record PowerShellVariableReferenceAnnotation<T>
{
public void Deconstruct(
out string Name,
out T Value)
{
// ...
}
}
Name string
Value T
Equals(object?) Section titled Equals(object?) override bool
Determines whether the specified object is equal to the current object.
public record PowerShellVariableReferenceAnnotation<T>
{
public override bool Equals(
object? obj)
{
// ...
}
}
obj object? The object to compare with the current object.
bool true if the specified object is equal to the current object; otherwise, false.
Equals(PowerShellVariableReferenceAnnotation<T>) Section titled Equals(PowerShellVariableReferenceAnnotation<T>) virtual bool
Indicates whether the current object is equal to another object of the same type.
public record PowerShellVariableReferenceAnnotation<T>
{
public virtual bool Equals(
PowerShellVariableReferenceAnnotation<T>? other)
{
// ...
}
}
other PowerShellVariableReferenceAnnotation<T> 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
Serves as the default hash function.
public record PowerShellVariableReferenceAnnotation<T>
{
public override int GetHashCode()
{
// ...
}
}
int A hash code for the current object.
op_Equality(PowerShellVariableReferenceAnnotation<T>, PowerShellVariableReferenceAnnotation<T>) Section titled op_Equality(PowerShellVariableReferenceAnnotation<T>, PowerShellVariableReferenceAnnotation<T>) static bool
public record PowerShellVariableReferenceAnnotation<T>
{
public static bool operator ==(
PowerShellVariableReferenceAnnotation<T>? left,
PowerShellVariableReferenceAnnotation<T>? right)
{
// ...
}
}
op_Inequality(PowerShellVariableReferenceAnnotation<T>, PowerShellVariableReferenceAnnotation<T>) Section titled op_Inequality(PowerShellVariableReferenceAnnotation<T>, PowerShellVariableReferenceAnnotation<T>) static bool
public record PowerShellVariableReferenceAnnotation<T>
{
public static bool operator !=(
PowerShellVariableReferenceAnnotation<T>? left,
PowerShellVariableReferenceAnnotation<T>? right)
{
// ...
}
}
ToString Section titled ToString override string
Returns a string that represents the current object.
public record PowerShellVariableReferenceAnnotation<T>
{
public override string ToString()
{
// ...
}
}
string A string that represents the current object.