PreProcessInputEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Input / PreProcessInputEventArgs.cs / 1 / PreProcessInputEventArgs.cs

                             
using System;
using System.Security.Permissions;
using System.Security;
 
namespace System.Windows.Input
{ 
    ///  
    ///     Allows the handler to cancel the processing of an input event.
    ///  
    /// 
    ///     An instance of this class is passed to the handlers of the
    ///     following events:
    ///      
    ///         
    ///              
    ///          
    ///     
    ///  
    public sealed class PreProcessInputEventArgs : ProcessInputEventArgs
    {
        // Only we can make these.  Note that we cache and reuse instances.
        internal PreProcessInputEventArgs() {} 

        /// 
        ///     Critical calls ProcessInputEventArgs.Reset ( critical as it handles InputManager) 
        ///
        [SecurityCritical] 
        internal override void Reset(StagingAreaInputItem input, InputManager inputManager)
        {
            _canceled = false;
            base.Reset(input, inputManager); 
        }
 
        ///  
        ///     Cancels the processing of the input event.
        ///  
        public void Cancel()
        {
            _canceled = true;
        } 

        ///  
        ///     Whether or not the input event processing was canceled. 
        /// 
        public bool Canceled {get {return _canceled;}} 

        private bool _canceled;
    }
 
    /// 
    ///     Delegate type for handles of events that use 
    ///     . 
    /// 
    public delegate void PreProcessInputEventHandler(object sender, PreProcessInputEventArgs e); 
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
 
using System;
using System.Security.Permissions;
using System.Security;
 
namespace System.Windows.Input
{ 
    ///  
    ///     Allows the handler to cancel the processing of an input event.
    ///  
    /// 
    ///     An instance of this class is passed to the handlers of the
    ///     following events:
    ///      
    ///         
    ///              
    ///          
    ///     
    ///  
    public sealed class PreProcessInputEventArgs : ProcessInputEventArgs
    {
        // Only we can make these.  Note that we cache and reuse instances.
        internal PreProcessInputEventArgs() {} 

        /// 
        ///     Critical calls ProcessInputEventArgs.Reset ( critical as it handles InputManager) 
        ///
        [SecurityCritical] 
        internal override void Reset(StagingAreaInputItem input, InputManager inputManager)
        {
            _canceled = false;
            base.Reset(input, inputManager); 
        }
 
        ///  
        ///     Cancels the processing of the input event.
        ///  
        public void Cancel()
        {
            _canceled = true;
        } 

        ///  
        ///     Whether or not the input event processing was canceled. 
        /// 
        public bool Canceled {get {return _canceled;}} 

        private bool _canceled;
    }
 
    /// 
    ///     Delegate type for handles of events that use 
    ///     . 
    /// 
    public delegate void PreProcessInputEventHandler(object sender, PreProcessInputEventArgs e); 
}


// 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