SetSecurity Method

Summary
Sets the security settings for a source folder or the whole server.
Syntax
C#
C++/CLI
public void SetSecurity( 
   int index, 
   RTSPSecurity value 
) 
public: 
void SetSecurity(  
   int index, 
   RTSPSecurity^ value 
)  

Parameters

index
0-based index of the source folder whose security settings should be set. Use -1 to set the default RTSP Server security settings.

value
The RTSPSecurity object containing the security settings. If NULL, no authentication is required to access the folder (or server).

Remarks

If  index is between 0 and SourceCount - 1 (where SourceCount is the number of folders in the list, as indicated by SourceCount), this function sets the security settings for the source with the index equal to  index.

If  index is set to -1, this method sets the default security settings for the RTSP server. All the current folders are set to these security settings. Also, all future folders added with SetSourceFolder will use the default security settings.

If you never set the security settings for the RTSP server, the default security setting is NULL (no authentication is used).

See RTSPSecurity for more information on RTSP security settings (also called 'authentication').

If the server is running, the updated security settings will be used the next time an RTSP client connects. It will not affect RTSP clients already connected.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public void SetSecurity() 
{ 
   RTSPSecurity security = new RTSPSecurity(); 
   security.RealmName = "MyRTSPServer"; 
   security.AuthenticationRequired = RTSPAuthenticationType.Basic; 
   security.AddUser("TestUser", "TestPassword"); 
   _server.SetSecurity(-1, security); 
} 
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.Multimedia Assembly

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