ServiceController::DependentServices Property
Gets the set of services that depends on the service associated with this ServiceController instance.
Namespace: System.ServiceProcess
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
[ServiceProcessDescriptionAttribute(L"SPDependentServices")] public: property array<ServiceController^>^ DependentServices { array<ServiceController^>^ get (); }
Property Value
Type: array<System.ServiceProcess::ServiceController>An array of ServiceController instances, each of which is associated with a service that depends on this service.
| Exception | Condition |
|---|---|
| Win32Exception | An error occurred when accessing a system API. |
| InvalidOperationException | The service was not found. |
The DependentServices array represents the services that the system stops if your application calls Stop for this service.
The following example uses the ServiceController class to display the set of services that are dependent on the Event Log service.
ServiceController^ sc = gcnew ServiceController( "Event Log" ); array<ServiceController^>^scServices = nullptr; if ( sc ) { scServices = sc->DependentServices; } if ( sc && scServices ) { // Display the list of services dependent on the Event Log service. if ( scServices->Length == 0 ) { Console::WriteLine( "There are no services dependent on {0}", sc->ServiceName ); } else { Console::WriteLine( "Services dependent on {0}:", sc->ServiceName ); for each (ServiceController^ scTemp in scServices) { Console::WriteLine(" {0}", scTemp->DisplayName); } } }
- ServiceControllerPermission
for connecting to existing services on the computer. Associated enumeration: ServiceControllerPermissionAccess::Browse
- 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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.