Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / CheckoutException.cs / 1 / CheckoutException.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.Runtime.InteropServices; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2112:SecuredTypesShouldNotExposeFields")] // ReadOnly field - already shipped. [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] [Serializable] public class CheckoutException : ExternalException { ////// The exception thrown when an attempt is made to edit a file that is checked into /// a source control program. /// ////// public readonly static CheckoutException Canceled = new CheckoutException(SR.GetString(SR.CHECKOUTCanceled), NativeMethods.E_ABORT); ////// Initializes a ///that specifies that the checkout /// was /// canceled. This field is read-only. /// /// public CheckoutException() { } ////// Initializes /// a new instance of the ///class with no /// associated message or /// error code. /// /// public CheckoutException(string message) : base(message) { } ////// Initializes a new instance of the ////// class with the specified message. /// /// public CheckoutException(string message, int errorCode) : base(message, errorCode) { } ////// Initializes a new instance of the ////// class with the specified message and error code. /// /// Need this constructor since Exception implements ISerializable. We don't have any fields, /// so just forward this to base. /// protected CheckoutException(SerializationInfo info, StreamingContext context) : base(info, context) { } ////// Initializes a new instance of the Exception class with a specified error message and a /// reference to the inner exception that is the cause of this exception. /// FxCop CA1032: Multiple constructors are required to correctly implement a custom exception. /// public CheckoutException( string message, Exception innerException ) : base(message, innerException) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExternalDataExchangeService.cs
- ArgumentValue.cs
- HandlerBase.cs
- FacetValues.cs
- AvTraceDetails.cs
- DefaultDialogButtons.cs
- Serializer.cs
- QueryContext.cs
- XamlPointCollectionSerializer.cs
- HttpDigestClientCredential.cs
- TextBox.cs
- XmlPreloadedResolver.cs
- ReadOnlyDictionary.cs
- QilReference.cs
- ListChangedEventArgs.cs
- CustomAttributeSerializer.cs
- StrongNamePublicKeyBlob.cs
- LayoutTableCell.cs
- Set.cs
- ParserStreamGeometryContext.cs
- DataGridViewRowCancelEventArgs.cs
- NodeFunctions.cs
- StatusStrip.cs
- Events.cs
- SymLanguageType.cs
- SQLStringStorage.cs
- SystemSounds.cs
- HotSpot.cs
- ReadOnlyMetadataCollection.cs
- WorkItem.cs
- RegexCompilationInfo.cs
- Attributes.cs
- FunctionDetailsReader.cs
- ComplexBindingPropertiesAttribute.cs
- StorageComplexTypeMapping.cs
- PeerApplicationLaunchInfo.cs
- SystemIcons.cs
- SrgsSemanticInterpretationTag.cs
- DataSysAttribute.cs
- PerformanceCounterPermissionAttribute.cs
- Exceptions.cs
- BinaryObjectWriter.cs
- CngKey.cs
- Stream.cs
- WebDescriptionAttribute.cs
- XComponentModel.cs
- OutputCacheProfileCollection.cs
- Light.cs
- MemberMaps.cs
- MsmqInputMessage.cs
- PresentationUIStyleResources.cs
- _DomainName.cs
- Utils.cs
- SynchronizedPool.cs
- ResourceManagerWrapper.cs
- Guid.cs
- ILGen.cs
- CoTaskMemHandle.cs
- SqlFormatter.cs
- ThemeableAttribute.cs
- OutputCacheSection.cs
- KnownTypes.cs
- TakeOrSkipWhileQueryOperator.cs
- MorphHelper.cs
- SpotLight.cs
- EncryptedXml.cs
- CursorConverter.cs
- XmlMessageFormatter.cs
- DataSourceCache.cs
- StylusPlugin.cs
- MultiPageTextView.cs
- PaperSize.cs
- EntitySet.cs
- DataSourceControl.cs
- PopupEventArgs.cs
- VectorAnimationUsingKeyFrames.cs
- ToolStripProgressBar.cs
- CriticalFinalizerObject.cs
- ListViewEditEventArgs.cs
- InvalidPropValue.cs
- prompt.cs
- AttributeProviderAttribute.cs
- TaiwanLunisolarCalendar.cs
- PersistenceTypeAttribute.cs
- KeyTime.cs
- mda.cs
- RC2CryptoServiceProvider.cs
- BufferedStream.cs
- Part.cs
- StringTraceRecord.cs
- HGlobalSafeHandle.cs
- WorkflowInstanceAbortedRecord.cs
- SqlCacheDependencyDatabaseCollection.cs
- WsatConfiguration.cs
- StackBuilderSink.cs
- Size3D.cs
- ColumnClickEvent.cs
- CollectionBuilder.cs
- CanonicalFontFamilyReference.cs
- UnsafeNativeMethods.cs