Returns the name of the current session.

Namespace: NMixerProNET
Assembly: MixerProNET (in MixerProNET.dll) Version: 2.1.0.27196 (2.1.0)

Syntax

C#
public string Name { get; }
Visual Basic
Public ReadOnly Property Name As String
	Get
Visual C++
public:
property String^ Name {
	String^ get ();
}

Remarks

Under some circumstances, the name property will return an empty string.

This is not a bug in MixerProNET, instead, sessions need to be named by the application that creates them and if the developer of that application "forgot" or simply neglected to set the name, the session will remain nameless.

In the case where the name is missing, MixerProNET will try to obtain an alternate name representation for the session, such as for example, it will try to obtain the name of the process. Unfortunately, this will not always work so if the return value is empty, your application should handle this situation on its own.

See Also