Class MissingRepresentationCollection
Represents a collection of ResponseDomains that represent missing values. Only TextDomain, CodeDomain, and NumericDomain are allowed.
Inheritance
MissingRepresentationCollection
Implements
Inherited Members
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class MissingRepresentationCollection : ObservableCollection<ResponseDomain>, IList<ResponseDomain>, ICollection<ResponseDomain>, IList, ICollection, IReadOnlyList<ResponseDomain>, IReadOnlyCollection<ResponseDomain>, IEnumerable<ResponseDomain>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Methods
InsertItem(int, ResponseDomain)
Inserts the item.
Declaration
protected override void InsertItem(int index, ResponseDomain item)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index. |
ResponseDomain | item | The item. |
Overrides
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Missing value representations must be text, code, or numeric. |
SetItem(int, ResponseDomain)
Sets the item.
Declaration
protected override void SetItem(int index, ResponseDomain item)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index. |
ResponseDomain | item | The item. |
Overrides
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Missing value representations must be text, code, or numeric. |