ServiceController::ServiceType Property
.NET Framework 4
Gets the type of service that this object references.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
[ServiceProcessDescriptionAttribute(L"SPServiceType")] public: property ServiceType ServiceType { ServiceType get (); }
Property Value
Type: System.ServiceProcess::ServiceTypeOne of the ServiceType values, used to indicate the network service type.
| Exception | Condition |
|---|---|
| Win32Exception | An error occurred when accessing a system API. |
| InvalidOperationException | The service was not found. |
The following example uses the ServiceController class to display the device driver services on the local computer.
array<ServiceController^>^scDevices = ServiceController::GetDevices(); if ( scDevices->Length ) { int numAdapter = 0,numFileSystem = 0,numKernel = 0,numRecognizer = 0; // Display the list of device driver services. Console::WriteLine( "Device driver services on the local computer:" ); for each (ServiceController^ scTemp in scDevices) { // Display the status and the service name, for example, // [Running] PCI Bus Driver // Type = KernelDriver Console::WriteLine( " [{0}] {1}", scTemp->Status, scTemp->DisplayName ); Console::WriteLine( " Type = {0}", scTemp->ServiceType ); // Update counters using the service type bit flags. if ( (scTemp->ServiceType & ServiceType::Adapter) != (ServiceType)0 ) { numAdapter++; } if ( (scTemp->ServiceType & ServiceType::FileSystemDriver) != (ServiceType)0 ) { numFileSystem++; } if ( (scTemp->ServiceType & ServiceType::KernelDriver) != (ServiceType)0 ) { numKernel++; } if ( (scTemp->ServiceType & ServiceType::RecognizerDriver) != (ServiceType)0 ) { numRecognizer++; } } Console::WriteLine(); Console::WriteLine( "Total of {0} device driver services", scDevices->Length.ToString() ); Console::WriteLine( " {0} are adapter drivers", numAdapter.ToString() ); Console::WriteLine( " {0} are file system drivers", numFileSystem.ToString() ); Console::WriteLine( " {0} are kernel drivers", numKernel.ToString() ); Console::WriteLine( " {0} are file system recognizer drivers", numRecognizer.ToString() );
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.