Click or drag to resize

IXmlDataImporterFolderKeys 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> FolderKeys { get; }

Property Value

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