←Select platform

Add Method (PathResolver)

Summary

Adds or replaces a variable key/value pair.

Syntax

C#
VB
C++
public void Add(  
   string key, 
   string value 
) 
Public Sub Add( _ 
   ByVal key As String, _ 
   ByVal value As String _ 
)  
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#
VB
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; 
   } 
} 
Imports Leadtools 
Imports Leadtools.MediaStreaming 
 
 
Public _pathresolver As PathResolver = Nothing 
Public _result As Boolean = False 
 
Public Sub 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 e1 As Exception 
      _result = False 
   End Try 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaStreaming Assembly