Name Your Player
info
As of 2023, Samsung states that Tizen TV's are not optimized for .NET applications. Samsung strongly recommends using JS/Web applications instead of C#/.NET applications for TVs. Please check the Lura Player Web SDK
You can add name to your player by adding a name attribute to your configuration object. This name will be included in the events.
Name Configuration
using Lura;
using Lura.Unified;
using Tizen.NUI;
// Initialize player
Window window = Window.Instance;
var player = new Player(window);
// Configure with player name
var config = new Configuration
{
Name = "lorem-ipsum-dolor-sit-amet"
};
// Set configuration
await player.SetConfig(config);
player.Play();