ServiceController::ServiceType Property
.NET Framework (current version)
Gets the type of service that this object references.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
public: [ServiceProcessDescriptionAttribute("SPServiceType")] 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 service type indicates how the service is used by the system. The value of the ServiceType property represents a set of flags combined using the bitwise OR operator.
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() );
.NET Framework
Available since 1.1
Available since 1.1
Show: