Skip to content
Docs Try Aspire

PowerShellScriptArgsAnnotation Methods

Record Methods 8 members
Represents the arguments for a PowerShell script resource.
public record PowerShellScriptArgsAnnotation
{
public virtual PowerShellScriptArgsAnnotation <Clone>$()
{
// ...
}
}
public record PowerShellScriptArgsAnnotation
{
public void Deconstruct(
out object[] Args)
{
// ...
}
}
Args object[]
Equals(object?) Section titled Equals(object?) override bool
Determines whether the specified object is equal to the current object.
public record PowerShellScriptArgsAnnotation
{
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(PowerShellScriptArgsAnnotation?) Section titled Equals(PowerShellScriptArgsAnnotation?) virtual bool
Indicates whether the current object is equal to another object of the same type.
public record PowerShellScriptArgsAnnotation
{
public virtual bool Equals(
PowerShellScriptArgsAnnotation? other)
{
// ...
}
}
other PowerShellScriptArgsAnnotation? 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 PowerShellScriptArgsAnnotation
{
public override int GetHashCode()
{
// ...
}
}
int A hash code for the current object.
op_Equality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) Section titled op_Equality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) static bool
public record PowerShellScriptArgsAnnotation
{
public static bool operator ==(
PowerShellScriptArgsAnnotation? left,
PowerShellScriptArgsAnnotation? right)
{
// ...
}
}
op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) Section titled op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) static bool
public record PowerShellScriptArgsAnnotation
{
public static bool operator !=(
PowerShellScriptArgsAnnotation? left,
PowerShellScriptArgsAnnotation? right)
{
// ...
}
}
ToString Section titled ToString override string
Returns a string that represents the current object.
public record PowerShellScriptArgsAnnotation
{
public override string ToString()
{
// ...
}
}
string A string that represents the current object.