PowerShellScriptArgsAnnotation Methods
RecordMethods8 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
Argsobject[]Determines whether the specified object is equal to the current object.
public record PowerShellScriptArgsAnnotation{ public override bool Equals( object? obj) { // ... }}Parameters
objobject?The object to compare with the current object.Returns
booltrue if the specified object is equal to the current object; otherwise, false.Equals(PowerShellScriptArgsAnnotation?)Section titled Equals(PowerShellScriptArgsAnnotation?)virtualboolIndicates whether the current object is equal to another object of the same type.
public record PowerShellScriptArgsAnnotation{ public virtual bool Equals( PowerShellScriptArgsAnnotation? other) { // ... }}Parameters
otherPowerShellScriptArgsAnnotation?An object to compare with this object.Returns
booltrue 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
intA hash code for the current object.op_Equality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?)Section titled op_Equality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?)staticboolpublic record PowerShellScriptArgsAnnotation{ public static bool operator ==( PowerShellScriptArgsAnnotation? left, PowerShellScriptArgsAnnotation? right) { // ... }}Parameters
op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?)Section titled op_Inequality(PowerShellScriptArgsAnnotation?, PowerShellScriptArgsAnnotation?)staticboolpublic 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
stringA string that represents the current object.