Click or drag to resize
IReceiverFormatManager Interface
Manages the feed formats that the program can decode.

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

The IReceiverFormatManager 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 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 receiver 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