kCura.WinEDDS.DocumentFieldCollection
namespace kCura.WinEDDS
{
public class DocumentFieldCollection : IEnumerable<DocumentField>
{
public class FieldNameComparer : IComparer
{
public FieldNameComparer();
public int Compare(object x, object y);
}
public DocumentField GroupIdentifier { get; }
public DocumentField FullText { get; }
public ICollection AllFields { get; }
public DocumentField Item(int fieldID);
public DocumentField Item(string fieldName);
public int Count();
public void Add(DocumentField field);
public void AddRange(DocumentField[] fields);
public string[] Names();
public bool Exists(int fieldID);
public bool Exists(string fieldName);
public DocumentField[] GetFieldsByCategory(FieldCategory type);
public DocumentField[] IdentifierFields();
public string[] IdentifierFieldNames();
public string[] NamesForIdentifierDropdown();
public DocumentFieldCollection();
public DocumentFieldCollection(DocumentField[] fields);
public IEnumerator GetEnumerator();
}
}