PowerShellScriptArgsAnnotation Methods
Record Methods 8 members
Represents the arguments for a PowerShell script resource.
public record PowerShellScriptArgsAnnotation{ public virtual PowerShellScriptArgsAnnotation <Clone>$() { // ... }}Deconstruct(object[]) Section titled Deconstruct(object[]) public record PowerShellScriptArgsAnnotation{ public void Deconstruct( out object[] Args) { // ... }}Parameters
Args object[] Determines whether the specified object is equal to the current object.
public record PowerShellScriptArgsAnnotation{ public override bool Equals( object? obj) { // ... }}Parameters
obj object? The object to compare with the current object. Returns
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) { // ... }}Parameters
other PowerShellScriptArgsAnnotation? An object to compare with this object. Returns
bool true if the current object is equal to the other parameter; otherwise, false. Serves as the default hash function.
public record PowerShellScriptArgsAnnotation{ public override int GetHashCode() { // ... }}Returns
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) { // ... }}Parameters
op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) Section titled op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?) static bool public record PowerShellScriptArgsAnnotation{ public static bool operator !=( PowerShellScriptArgsAnnotation? left, PowerShellScriptArgsAnnotation? right) { // ... }}Parameters
Returns a string that represents the current object.
public record PowerShellScriptArgsAnnotation{ public override string ToString() { // ... }}Returns
string A string that represents the current object.