IComponentModel.GetService<T> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a "service" from the default composition container, i.e. an object of which there can only a single instance exist in a given composition container. Equals to calling GetExportedValue<T>() directly.
public:
generic <typename T>
where T : class T GetService();
public:
generic <typename T>
where T : class T GetService();
template <typename T>
where T : class T GetService();
public T GetService<T> () where T : class;
abstract member GetService : unit -> 'T (requires 'T : null)
Public Function GetService(Of T As Class) () As T
Type Parameters
- T
The type of the object to get.
Returns
T
The instance of the requested object.