Class CommandShellParameter
Shell parameter
Inheritance
System.Object
CommandShellParameter
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.CommandShell
Assembly: Simplic.CommandShell.dll
Syntax
public class CommandShellParameter
Constructors
| Improve this Doc View SourceCommandShellParameter(String, String[])
Create a parameter
Declaration
public CommandShellParameter(string name, string[] value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Name of the parameter |
System.String[] | value | Value of the parameter |
Properties
| Improve this Doc View SourceName
Name of the parameter
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Value of the parameter
Declaration
public string[] Value { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Methods
| Improve this Doc View SourceEquals(Object)
Equals, compare the name of two ShellParameter caseinsensitive
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | Instance of the object to compare |
Returns
Type | Description |
---|---|
System.Boolean | True if the objects are equal |
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
GetHashCode()
Hash-Code of the Parameter-Name
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hashcode |
Overrides
System.Object.GetHashCode()