Click or drag to resize
IRebroadcastFormatManager Interface
The singleton manager that keeps track of all registered rebroadcast server formats.

Namespace: VirtualRadar.Interface.Network
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IRebroadcastFormatManager : ISingleton<IRebroadcastFormatManager>

The IRebroadcastFormatManager type exposes the following members.

Properties
  NameDescription
Public propertySingleton
Gets the single instance of the class that should be used throughout the application.
(Inherited from ISingletonT.)
Top
Methods
  NameDescription
Public methodCreateProvider
Creates a new instance of the provider with the unique ID passed across. Returns null if no provider is registered for the ID passed across.
Public methodGetProvider
Returns the registered provider with the identifier supplied or null if no provider has been registered for this ID.
Public methodGetRegisteredFormats
Returns a collection of all registered rebroadcast server formats in a summarised form.
Public methodInitialise
Initialises the format manager.
Public methodRegisterProvider
Registers a provider.
Public methodShortName
Returns the short name associated with the unique ID passed across. If there is no provider registered with the unique ID then a string along the lines of "Unknown" is returned.
Top
Remarks
Plugins cannot provide their own implementation of this interface, the singleton is established before RegisterImplementations is called.
See Also