File: MS\Internal\AppModel\SecurityMgrSite.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
// Description:
//              The SecurityMgrSite is an implementation of Urlmon's IInternetSecurityMgrSite. 
//
//              It is primarily used to supply an hwnd to be modal to- when a ProcessUrlAction call
//              is required to show UI. 
 
using System;
using MS.Win32;
using System.Runtime.InteropServices;
using System.Windows;
using System.Security;
using MS.Internal.AppModel;
 
namespace MS.Internal
{
    internal class SecurityMgrSite : NativeMethods.IInternetSecurityMgrSite
    {
        internal SecurityMgrSite()
        {
        }
 
        public void GetWindow( /* [out] */ ref IntPtr phwnd)
        {
            phwnd = IntPtr.Zero;
 
            if (Application.Current != null)
            {
                Window curWindow = Application.Current.MainWindow;
                if (curWindow != null)
                {
                    phwnd = curWindow.CriticalHandle;
                }
            }
        }
 
        public void EnableModeless( /* [in] */ bool fEnable)
        {
        }
    }
}