Atomia.Provisioning.Modules.Folders.Folders.ListServices C# (CSharp) Method

ListServices() public method

Lists the services.
public ListServices ( ModuleService service, int maxDepth, Atomia resource ) : ModuleService
service ModuleService The service.
maxDepth int The max depth.
resource Atomia The resource.
return ModuleService
        public override ModuleService ListServices(ModuleService service, int maxDepth, Atomia.Provisioning.Base.ResourceDescription resource)
        {
            ModuleCommand command = this.GetModuleCommand(resource, ModuleCommandType.List, maxDepth, service);
            command.Execute();
            return service;
        }