Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

ResourceUsage (Enums)
 
.
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
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions