Class MissingRepresentationCollection
Represents a collection of ResponseDomains that represent missing values. Only TextDomain, CodeDomain, and NumericDomain are allowed.
Inheritance
MissingRepresentationCollection
Implements
Inherited Members
System.Collections.ObjectModel.Collection<Algenta.Colectica.Model.Ddi.ResponseDomain>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<Algenta.Colectica.Model.Ddi.ResponseDomain>.System.Collections.IList.set_Item(System.Int32, System.Object)
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(Int32, ResponseDomain)
Inserts the item.
Declaration
protected override void InsertItem(int index, ResponseDomain item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index. |
ResponseDomain | item | The item. |
Overrides
System.Collections.ObjectModel.ObservableCollection<Algenta.Colectica.Model.Ddi.ResponseDomain>.InsertItem(System.Int32, Algenta.Colectica.Model.Ddi.ResponseDomain)
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Missing value representations must be text, code, or numeric. |
SetItem(Int32, ResponseDomain)
Sets the item.
Declaration
protected override void SetItem(int index, ResponseDomain item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index. |
ResponseDomain | item | The item. |
Overrides
System.Collections.ObjectModel.ObservableCollection<Algenta.Colectica.Model.Ddi.ResponseDomain>.SetItem(System.Int32, Algenta.Colectica.Model.Ddi.ResponseDomain)
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Missing value representations must be text, code, or numeric. |