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

Show in webframe

Remove Method (PathResolver)






string variable which contains the key to remove.
Removes a variable key and its associated value.
Syntax
public void Remove( 
   string key
)
'Declaration
 
Public Sub Remove( _
   ByVal key As String _
) 
'Usage
 
Dim instance As PathResolver
Dim key As String
 
instance.Remove(key)
public:
void Remove( 
   String^ key
) 

Parameters

key
string variable which contains the key to remove.
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 SetCustomPathVariablesExample()
  Try
     ' this example will clear the default variables and set up direct ltmsMediaFolder,
     ' ltmsLogFolder, and ltmsConfigFolder variables

     Dim strfolder As String = "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 e1 As Exception
     _result = False
  End Try
End Sub
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

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