Clear Method (PathResolver)

Summary
Removes all variable key/value pairs.
Syntax
C#
C++/CLI
public void Clear() 
public: 
void Clear();  
Remarks

If the method fails, an error is raised. For more information, refer to the Error Codes.

Example
C#
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 variables 
 
      string 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; 
   } 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaStreaming Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.