NetworkInformationAccess Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies permission to access information about network interfaces and traffic statistics.
This enumeration supports a bitwise combination of its member values.
public enum class NetworkInformationAccess
[System.Flags]
public enum NetworkInformationAccess
[<System.Flags>]
type NetworkInformationAccess =
Public Enum NetworkInformationAccess
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No access to network information. |
Read | 1 | Read access to network information. |
Ping | 4 | Ping access to network information. |
Examples
The following code example creates a permission that controls Read access to network information.
System::Net::NetworkInformation::NetworkInformationPermission^ read = gcnew System::Net::NetworkInformation::NetworkInformationPermission( System::Net::NetworkInformation::NetworkInformationAccess::Read );
System.Net.NetworkInformation.NetworkInformationPermission read =
new System.Net.NetworkInformation.NetworkInformationPermission(
System.Net.NetworkInformation.NetworkInformationAccess.Read);
Dim read As New System.Net.NetworkInformation.NetworkInformationPermission( _
System.Net.NetworkInformation.NetworkInformationAccess.Read)
Remarks
This enumeration is used with the NetworkInformationPermission class to specify the level of access to information that the permission object controls.