@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: NetDriveTypes - Return values of [IsNetDrive] !!!!C# Definition: /// <summary> /// Return values of IsNetDrive() /// </summary> enum NetDriveTypes : int { /// <summary> /// The specified drive is not a network drive. /// </summary> NotNetDrive = 0, /// <summary> /// The specified drive is a network drive that is properly connected. /// </summary> NetDriveConnected = 1, /// <summary> /// The specified drive is a network drive that is disconnected or in an error state. /// </summary> NetDriveError = 2 } !!!!VB.NET definition ''' <summary> ''' Return values of IsNetDrive() ''' </summary> Public Enum NetDriveTypes As Integer ''' <summary> ''' The specified drive is not a network drive. ''' </summary> NotNetDrive = 0 ''' <summary> ''' The specified drive is a network drive that is properly connected. ''' </summary> NetDriveConnected = 1 ''' <summary> ''' The specified drive is a network drive that is disconnected or in an error state. ''' </summary> NetDriveError = 2 End Enum !!!!VB Definition: Public Enum NetDriveTypes NotNetDrive As Long = 0 NetDriveConnected As Long = 1 NetDriveError As Long = 2 End Enum !!!!Notes: None. Documentation: NetDriveTypes@msdn on MSDN
Edit Enums.NetDriveTypes
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.