Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / SessionEndingCancelEventArgs.cs / 1 / SessionEndingCancelEventArgs.cs
//-------------------------------------------------------------------------------------------------- // File: SessionEndingCancelEventArgs.cs // // Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // // Description: // OnSessionEnding is called to raise the SessionEnding event. The developer will // typically override this method if they want to take action when the OS is ending // a session ( or they may choose to attach an event). // // This method will be called when the user has chosen to either logoff or shutdown. // These events are equivalent to receiving a WM_QUERYSESSION window event. // Windows will send it when user is logging out/shutting down. // ( See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/wm_queryendsession.asp ). // // By default if this event is not cancelled � Avalon will then call Application.Shutdown. // // History: // 08/10/04: [....] Moved out of Application.cs to its own separate file. // //------------------------------------------------------------------------------------------------- using System.ComponentModel; namespace System.Windows { ////// Event args for StartingUp event /// public class SessionEndingCancelEventArgs : CancelEventArgs { ////// constructor /// internal SessionEndingCancelEventArgs(ReasonSessionEnding reasonSessionEnding) { _reasonSessionEnding = reasonSessionEnding; } ////// The ReasonSessionEnding enum on the SessionEndingEventArgs indicates whether /// the session is ending in response to a shutdown of the OS, or if the user /// is logging off /// public ReasonSessionEnding ReasonSessionEnding { get { return _reasonSessionEnding; } } private ReasonSessionEnding _reasonSessionEnding; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventLogEntry.cs
- EntityClassGenerator.cs
- DataRowChangeEvent.cs
- UpdatePanelTriggerCollection.cs
- TextRange.cs
- ToolStripItemCollection.cs
- EditorZoneAutoFormat.cs
- ReadOnlyHierarchicalDataSource.cs
- FragmentQuery.cs
- AppSettingsReader.cs
- RoutedEventConverter.cs
- FlowDocumentView.cs
- DataGridRowHeader.cs
- Positioning.cs
- XPathNodeInfoAtom.cs
- ScrollChrome.cs
- TaiwanLunisolarCalendar.cs
- OperationValidationEventArgs.cs
- CommandEventArgs.cs
- RectConverter.cs
- WCFServiceClientProxyGenerator.cs
- ServiceModelInstallComponent.cs
- BindingContext.cs
- RepeaterCommandEventArgs.cs
- DbCommandTree.cs
- Add.cs
- GridViewAutomationPeer.cs
- HwndSourceKeyboardInputSite.cs
- MoveSizeWinEventHandler.cs
- AsyncCompletedEventArgs.cs
- Module.cs
- WebServiceAttribute.cs
- StringCollection.cs
- DesignerVerbCollection.cs
- LinqDataSourceValidationException.cs
- TextParagraphCache.cs
- RadioButton.cs
- sqlcontext.cs
- cryptoapiTransform.cs
- ExpressionPrefixAttribute.cs
- RequestCacheValidator.cs
- CacheModeValueSerializer.cs
- ObjectMemberMapping.cs
- CachingHintValidation.cs
- InputScope.cs
- TypeResolvingOptionsAttribute.cs
- CommandDevice.cs
- SecurityCriticalDataForSet.cs
- SqlClientPermission.cs
- ResetableIterator.cs
- ApplicationSecurityInfo.cs
- ImageAutomationPeer.cs
- ToolStripLabel.cs
- DesignerForm.cs
- PropertyPushdownHelper.cs
- RandomNumberGenerator.cs
- OneOf.cs
- StrongNameKeyPair.cs
- WebConvert.cs
- FontUnitConverter.cs
- TreeNodeConverter.cs
- SqlNodeTypeOperators.cs
- RootDesignerSerializerAttribute.cs
- CompilerError.cs
- SqlDuplicator.cs
- infer.cs
- AdRotatorDesigner.cs
- RegexReplacement.cs
- JavascriptCallbackResponseProperty.cs
- DataFormats.cs
- BinaryConverter.cs
- GeneralTransform3DGroup.cs
- ParameterReplacerVisitor.cs
- DirectoryObjectSecurity.cs
- Point3DCollection.cs
- AdvancedBindingEditor.cs
- UnsafeNativeMethods.cs
- FragmentQueryKB.cs
- Image.cs
- arabicshape.cs
- BamlRecords.cs
- CfgParser.cs
- CanonicalXml.cs
- DescendantOverDescendantQuery.cs
- ReadContentAsBinaryHelper.cs
- VisualBrush.cs
- XmlTypeAttribute.cs
- Section.cs
- SHA256Managed.cs
- CharUnicodeInfo.cs
- WorkflowElementDialog.cs
- WindowsStatic.cs
- ClientRuntimeConfig.cs
- ColorConverter.cs
- DataColumn.cs
- CheckBoxBaseAdapter.cs
- EntityPropertyMappingAttribute.cs
- PackagingUtilities.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- PtsContext.cs