Show / Hide Table of Contents

Class AttachmentCommandDefinition

Specification for an attachment capture command.

Inheritance
object
AttachmentCommandDefinition
Implements
IEquatable<AttachmentCommandDefinition>
Inherited Members
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class AttachmentCommandDefinition : IEquatable<AttachmentCommandDefinition>

Constructors

View Source

AttachmentCommandDefinition()

Initializes a new instance of the AttachmentCommandDefinition class.

Declaration
public AttachmentCommandDefinition()
View Source

AttachmentCommandDefinition(AttachmentCommandDefinition)

Initializes a new instance of the AttachmentCommandDefinition class.

Declaration
public AttachmentCommandDefinition(AttachmentCommandDefinition other)
Parameters
Type Name Description
AttachmentCommandDefinition other

The instance to copy.

View Source

AttachmentCommandDefinition(string, string)

Initializes a new instance of the AttachmentCommandDefinition class.

Declaration
public AttachmentCommandDefinition(string name, string parameters)
Parameters
Type Name Description
string name

The name of the command.

string parameters

The parameter string to pass to the command.

Properties

View Source

Name

Gets or sets the command name.

Declaration
public string Name { get; set; }
Property Value
Type Description
string
View Source

Parameters

Gets or sets the string representation of the parameter value.

Declaration
public string Parameters { get; set; }
Property Value
Type Description
string

Methods

View Source

Equals(AttachmentCommandDefinition)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals(AttachmentCommandDefinition other)
Parameters
Type Name Description
AttachmentCommandDefinition other

An object to compare with this object.

Returns
Type Description
bool

true if the current object is equal to the other parameter; otherwise, false.

View Source

Equals(object)

Determines whether the specified object is equal to the current object.

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
object obj

The object to compare with the current object.

Returns
Type Description
bool

true if the specified object is equal to the current object; otherwise, false.

Overrides
object.Equals(object)
View Source

GetHashCode()

Serves as the default hash function.

Declaration
public override int GetHashCode()
Returns
Type Description
int

A hash code for the current object.

Overrides
object.GetHashCode()

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX