2 writes to _hFindFile
System.Web (2)
Util\FileEnumerator.cs (2)
125
_hFindFile
= UnsafeNativeMethods.FindFirstFile(_path + @"\*.*", out _wfd);
155
_hFindFile
= UnsafeNativeMethods.INVALID_HANDLE_VALUE;
5 references to _hFindFile
System.Web (5)
Util\FileEnumerator.cs (5)
124
if (
_hFindFile
== UnsafeNativeMethods.INVALID_HANDLE_VALUE) {
128
if (
_hFindFile
== UnsafeNativeMethods.INVALID_HANDLE_VALUE)
132
bool hasMoreFiles = UnsafeNativeMethods.FindNextFile(
_hFindFile
, out _wfd);
153
if (
_hFindFile
!= UnsafeNativeMethods.INVALID_HANDLE_VALUE) {
154
UnsafeNativeMethods.FindClose(
_hFindFile
);