IUpdateServer.GetDynamicCategories Method (Int64, Int64)

 

Applies To: Windows Server Update Services

Returns the specified number of dynamic categories.

Namespace:   Microsoft.UpdateServices.Administration
Assembly:  Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)

Syntax

IEnumerable<IDynamicCategory> GetDynamicCategories(
    long skip,
    long take
)
IEnumerable<IDynamicCategory^>^ GetDynamicCategories(
    long long skip,
    long long take
)
abstract GetDynamicCategories : 
        skip:int64 *
        take:int64 -> IEnumerable<IDynamicCategory>
Function GetDynamicCategories (
    skip As Long,
    take As Long
) As IEnumerable(Of IDynamicCategory)

Parameters

  • skip
    Type: System.Int64

    The number of categories to skip before returning the remaining categories.

  • take
    Type: System.Int64

    The maximum number of categories to return.

Return Value

Type: System.Collections.Generic.IEnumerable<IDynamicCategory>

Up to the maximum number of categories.

See Also

GetDynamicCategories Overload
IUpdateServer Interface
Microsoft.UpdateServices.Administration Namespace

Return to top