Add Method (PathResolver)

Summary
Adds or replaces a variable key/value pair.
Syntax
C#
C++/CLI
public void Add( 
   string key, 
   string value 
) 
public: 
void Add(  
   String^ key, 
   String^ value 
)  

Parameters

key
String containing the key to add or replace.

value
String containing the value to associate with the specified key.

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 SetRootFolderExample() 
{ 
   try 
   { 
      // this example will change the root folder for the ltmsMediaFolder, ltmsLogFolder, 
      // and ltmsConfigFolder variables 
 
 
      // create an instance of the PathResolver object 
      _pathresolver = new Leadtools.MediaStreaming.PathResolver(); 
 
      // change the root folder 
      _pathresolver.Add("ltmsRootFolder", "C:\\NewRootFolder"); 
 
      _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.