public void Remove(string key)
key
string variable which contains the key to remove.
If the method fails, an error is raised. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.MediaStreaming;public PathResolver _pathresolver = null;public bool _result = false;public void SetCustomPathVariablesExample(){try{// this example will clear the default variables and set up direct ltmsMediaFolder,// ltmsLogFolder, and ltmsConfigFolder variablesstring strfolder = "C:\\LTMSFolder";// create an instance of the PathResolver object_pathresolver = new Leadtools.MediaStreaming.PathResolver();// clear them all_pathresolver.Clear();// now just define ltmsMediaFolder, ltmsLogFolder, and ltmsConfigFolder_pathresolver.Add("ltmsMediaFolder", strfolder + "\\content");_pathresolver.Add("ltmsLogFolder", strfolder + "\\logfiles");_pathresolver.Add("ltmsConfigFolder", strfolder + "\\configuration");// for demonstration add and remove a folder_pathresolver.Add("TempFolder", strfolder + "\\temp");_pathresolver.Remove("TempFolder");_result = true;}catch (Exception){_result = false;}}