Class AttachmentParameterDefinition
Specification for an attachment parameter.
Implements
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class AttachmentParameterDefinition : IEquatable<AttachmentParameterDefinition>
Constructors
View SourceAttachmentParameterDefinition()
Initializes a new instance of the AttachmentParameterDefinition class.
Declaration
public AttachmentParameterDefinition()
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 SourceIsMultiSelect
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 |
Name
Gets or sets the parameter name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
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 |
Value
Gets or sets the string representation of the parameter value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string |
ValueType
Gets or sets the value type of the parameter value.
Declaration
public string ValueType { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
View SourceEquals(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 |
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
View SourceGetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A hash code for the current object. |