QuickOPC User's Guide and Reference
SharedInstance Property (EasyUASubscriber)



OpcLabs.EasyOpcUAComponents Assembly > OpcLabs.EasyOpc.UA.PubSub Namespace > EasyUASubscriber Class : SharedInstance Property
A shared instance of the subscriber object.
Syntax
'Declaration
 
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>
<NotNullAttribute()>
Public Shared ReadOnly Property SharedInstance As EasyUASubscriber
'Usage
 
Dim value As EasyUASubscriber
 
value = EasyUASubscriber.SharedInstance
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
[NotNull()]
public static EasyUASubscriber SharedInstance {get;}
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
[NotNull()]
public:
static property EasyUASubscriber^ SharedInstance {
   EasyUASubscriber^ get();
}
Remarks

Use this property with care, as its usability is limited. Its main use is for testing, and for non-library application code where just a single instance is sufficient.

The shared instance is not suitable for Windows Forms or similar environments, where a specific System.Threading.SynchronizationContext may be used with each form.

We also do not recommend using the shared instance for library code, due to conflicts that may arise if your library sets some instance parameters which may not be the same as what other libraries or the final application expects.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also