Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / DesignerTransactionCloseEvent.cs / 1305376 / DesignerTransactionCloseEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System; using System.ComponentModel; using System.Diagnostics; using System.Reflection; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class DesignerTransactionCloseEventArgs : EventArgs { private bool commit; private bool lastTransaction; ///[To be supplied.] ////// Creates a new event args. Commit is true if the transaction is committed. This /// defaults the LastTransaction property to true. /// [Obsolete("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool, bool) instead. http://go.microsoft.com/fwlink/?linkid=14202")] public DesignerTransactionCloseEventArgs(bool commit) : this(commit, true) { } ////// Creates a new event args. Commit is true if the transaction is committed, and /// lastTransaction is true if this is the last transaction to close. /// public DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction) { this.commit = commit; this.lastTransaction = lastTransaction; } ////// public bool TransactionCommitted { get { return commit; } } ///[To be supplied.] ////// Returns true if this is the last transaction to close. /// public bool LastTransaction { get { return lastTransaction; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PeerObject.cs
- HtmlTitle.cs
- ConnectionStringsExpressionBuilder.cs
- CodeArgumentReferenceExpression.cs
- SolidBrush.cs
- XmlStringTable.cs
- XmlSchemaExternal.cs
- ConcurrentDictionary.cs
- EntityException.cs
- ApplyTemplatesAction.cs
- DataSourceCacheDurationConverter.cs
- FixedFlowMap.cs
- StylusPlugin.cs
- RichTextBox.cs
- MutexSecurity.cs
- Buffer.cs
- EndpointDesigner.cs
- ISFTagAndGuidCache.cs
- EmbossBitmapEffect.cs
- TranslateTransform.cs
- CatalogPartChrome.cs
- PasswordRecovery.cs
- Pens.cs
- LocatorManager.cs
- AndMessageFilter.cs
- ShaderRenderModeValidation.cs
- FilteredAttributeCollection.cs
- EditingMode.cs
- BindingOperations.cs
- TypeTypeConverter.cs
- newitemfactory.cs
- WindowExtensionMethods.cs
- BufferedReadStream.cs
- SchemaSetCompiler.cs
- XmlBindingWorker.cs
- ToolStripSeparatorRenderEventArgs.cs
- RTLAwareMessageBox.cs
- RegisteredDisposeScript.cs
- FocusChangedEventArgs.cs
- IconConverter.cs
- TextTreeObjectNode.cs
- SchemaCollectionPreprocessor.cs
- MarkupWriter.cs
- WindowsSlider.cs
- WindowsListViewItemCheckBox.cs
- OleDbDataReader.cs
- QilDataSource.cs
- pingexception.cs
- PropertyValue.cs
- GeneralTransform3D.cs
- _LoggingObject.cs
- PathSegment.cs
- SafeMILHandleMemoryPressure.cs
- OrderedDictionaryStateHelper.cs
- DataGridViewHeaderCell.cs
- SizeFConverter.cs
- CollectionViewGroup.cs
- CodeExpressionCollection.cs
- CircleHotSpot.cs
- SplayTreeNode.cs
- ToolStripManager.cs
- Rect3DConverter.cs
- XmlSchemaComplexContentRestriction.cs
- TreeNode.cs
- ListViewItem.cs
- HttpCookiesSection.cs
- QueryCacheKey.cs
- TextTreeUndo.cs
- ComponentDispatcherThread.cs
- SmtpCommands.cs
- SerialPort.cs
- PropertyDescriptorCollection.cs
- XmlReaderSettings.cs
- OracleParameterCollection.cs
- COAUTHIDENTITY.cs
- PersianCalendar.cs
- ColumnResizeAdorner.cs
- CaseInsensitiveHashCodeProvider.cs
- TreeNode.cs
- SchemaNames.cs
- CompiledELinqQueryState.cs
- DataGridrowEditEndingEventArgs.cs
- StringUtil.cs
- ApplicationFileCodeDomTreeGenerator.cs
- KeyPullup.cs
- LayoutEvent.cs
- BrowserCapabilitiesCompiler.cs
- NotCondition.cs
- QueueProcessor.cs
- SchemeSettingElementCollection.cs
- TypeDescriptor.cs
- FormsAuthenticationCredentials.cs
- PolicyManager.cs
- RegexCaptureCollection.cs
- ObjectViewQueryResultData.cs
- SystemResources.cs
- QueryContinueDragEventArgs.cs
- BulletChrome.cs
- ModuleConfigurationInfo.cs
- FixedFindEngine.cs