ResourceUsage (Enums)
Last changed: -91.90.10.220

.
Summary
A set of bit flags describing how the resource can be used.Note that this member can be specified only if the dwScope member is equal to RESOURCE_GLOBALNET. This member can be one of the following values defined in the Winnetwk.h header file.

C# Definition:

private enum ResourceUsage : uint
{
    Connectable = 0x1,
    Container = 0x2,
    NoLocalDevice = 0x4,
    Sibling = 0x8,
    Attached = 0x10,
    All = Connectable | Container | Attached,
    Reserved = 0x80000000u
}

VB Definition:

Private Enum ResourceUsage As UInteger
    Connectable = &H1
    Container = &H2
    NoLocalDevice = &H4
    Sibling = &H8
    Attached = &H10
    All = Connectable Or Container Or Attached
    Reserved = &H80000000UI
End Enum

Notes:

None.

Documentation