Show / Hide Table of Contents

Class AttachmentParameterDefinition

Specification for an attachment parameter.

Inheritance
object
AttachmentParameterDefinition
Implements
IEquatable<AttachmentParameterDefinition>
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 AttachmentParameterDefinition : IEquatable<AttachmentParameterDefinition>

Constructors

View Source

AttachmentParameterDefinition()

Initializes a new instance of the AttachmentParameterDefinition class.

Declaration
public AttachmentParameterDefinition()
View Source

AttachmentParameterDefinition(AttachmentParameterDefinition)

Initializes a new instance of the AttachmentParameterDefinition class.

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

The instance to copy.

Properties

View Source

IsMultiSelect

Gets or sets a value indicating whether the parameter supports selection of multiple items.

Declaration
public bool IsMultiSelect { get; set; }
Property Value
Type Description
bool
View Source

Name

Gets or sets the parameter name.

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

UseItemSelector

Gets or sets a value indicating whether the parameter supports using a selector to select items.

Declaration
public bool UseItemSelector { get; set; }
Property Value
Type Description
bool
View Source

Value

Gets or sets the string representation of the parameter value.

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

ValueType

Gets or sets the value type of the parameter value.

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

Methods

View Source

Equals(AttachmentParameterDefinition)

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

Declaration
public bool Equals(AttachmentParameterDefinition other)
Parameters
Type Name Description
AttachmentParameterDefinition 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