AccessibilityApplicationManager.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / AccessibilityApplicationManager.cs / 1 / AccessibilityApplicationManager.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace Microsoft.InfoCards
{ 
    using System;
    using Microsoft.InfoCards; 
    using System.Diagnostics; 
    using System.Security.Principal; //WindowsIdentity
 
    //
    // Summary:
    // This class will manage the lifetimes of the accessibility applications
    // on the InfoCard desktop. 
    //
    internal class AccessibilityApplicationManager 
    { 
        const int WindowsVistaMajorVersion = 6;
        IAccessibilityHelper m_helper; 

        public AccessibilityApplicationManager()
        {
            // 
            // Find out if we are on tablet PC.
            // 
            bool fTabletPC = ( 0 != NativeMethods.GetSystemMetrics( NativeMethods.SM_TABLETPC ) ); 

            if( Environment.OSVersion.Version.Major < WindowsVistaMajorVersion ) 
            {
                m_helper = new AccessibilityHelperForXpWin2k3( fTabletPC );
            }
            else 
            {
                m_helper = new AccessibilityHelperForVista( fTabletPC ); 
            } 
        }
 
        public void Stop()
        {
            m_helper.Stop();
        } 

        public void RestartOnInfoCardDesktop( uint userATApplicationFlags, 
                                              SafeNativeHandle hTrustedUserToken, 
                                              ref string trustedUserSid,
                                              string infocardDesktop, 
                                              int userSessionId,
                                              uint userProcessId,
                                              WindowsIdentity userIdentity )
        { 
            m_helper.RestartOnInfoCardDesktop( userATApplicationFlags,
                                               hTrustedUserToken, 
                                               ref trustedUserSid, 
                                               infocardDesktop,
                                               userSessionId, 
                                               userProcessId,
                                               userIdentity );
        }
 
        public bool RestartOnUsersDesktop( uint userProcessId, string userDesktop, WindowsIdentity userIdentity )
        { 
            return m_helper.RestartOnUsersDesktop( userProcessId, userDesktop, userIdentity ); 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK