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

AddKey() public method

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

Same methods

DataItem::AddKey ( string Key, string Data ) : void