Goedel.Persistence.DataItem.AddKey C# (CSharp) Method

AddKey() public method

Add a key to the persistence store index
public AddKey ( string Key, string Data ) : void
Key string Key to add entry to
Data string Data to add.
return void
        public void AddKey (string Key, string Data) {
            if (Keys == null) Keys = new List<IndexTerm>();
            var IndexTerm = new IndexTerm(Key, Data);
            Keys.Add(IndexTerm);
            }

Same methods

DataItem::AddKey ( PersistenceIndex Index, string Data ) : void