Error processing SSI file
LEADTOOLS Multimedia (Leadtools.MediaStreaming assembly)

Show in webframe

Add Method (PathResolver)






String containing the key to add or replace.
String containing the value to associate with the specified key.
Adds or replaces a variable key/value pair.
Syntax
public void Add( 
   string key,
   string value
)
'Declaration
 
Public Sub Add( _
   ByVal key As String, _
   ByVal value As String _
) 
'Usage
 
Dim instance As PathResolver
Dim key As String
Dim value As String
 
instance.Add(key, 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
Copy Code  
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
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

See Also

Reference

PathResolver Class
PathResolver Members

Error processing SSI file
Leadtools.MediaStreaming requires a Multimedia or Multimedia Suite license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features