RealmName Property

Summary
Gets or sets a string specifying the realm name.
Syntax
C#
C++/CLI
public string RealmName { get; set; } 
public: 
property String^ RealmName { 
   String^ get(); 
   void set (    String^ ); 
} 

Property Value

A string specifying the realm name.

Remarks

The realm name is a form of identifying your server to the RTSP client.

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.