2 writes to _nativeConfig
System.Web (2)
Configuration\NativeConfig.cs (2)
27hresult = UnsafeIISMethods.MgdCreateNativeConfigSystem(out _nativeConfig); 48IntPtr pConfigSystem = Interlocked.Exchange(ref _nativeConfig, IntPtr.Zero);
8 references to _nativeConfig
System.Web (8)
Configuration\NativeConfig.cs (8)
47if (_nativeConfig != IntPtr.Zero) { 61int result = UnsafeIISMethods.MgdGetSiteNameFromId(_nativeConfig, siteID, out pBstr, out cBstr); 77int result = UnsafeIISMethods.MgdMapPathDirect(_nativeConfig, siteName, path.VirtualPathString, out pBstr, out cBstr); 92return UnsafeIISMethods.MgdGetAppCollection(_nativeConfig, siteName, virtualPath, out pBstr, out cBstr, out pAppCollection, out count); 96return UnsafeIISMethods.MgdIsWithinApp(_nativeConfig, siteName, appPath, virtualPath); 100return UnsafeIISMethods.MgdGetVrPathCreds(_nativeConfig, siteName, virtualPath, out bstrUserName, out cchUserName, out bstrPassword, out cchPassword); 104return UnsafeIISMethods.MgdResolveSiteName(_nativeConfig, siteName); 108return UnsafeIISMethods.MgdGetAppPathForPath(_nativeConfig, siteId, virtualPath, out bstrPath, out cchPath);