Click or drag to resize

IXmlDataImporterObjectKeys Property

Gets the folder keys stored in the imported XML document. The folder keys are available after successfull import. The dictionary maps keys to folder IDs.

Namespace:  PDTec.IceNet.Core.Xml
Assembly:  PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
Dictionary<string, string> ObjectKeys { get; }

Property Value

Type: DictionaryString, String
Examples
foreach (KeyValuePair<string, string> pKey in pImporter.FolderKeys)
{
    Repository.GetObject(pKey.Value).AddKey(pKey.Key);
}
See Also