Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / CheckoutException.cs / 1305376 / 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) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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) { } } } // 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
- Bezier.cs
- WebDescriptionAttribute.cs
- MouseButton.cs
- AppLevelCompilationSectionCache.cs
- securitycriticaldataformultiplegetandset.cs
- HeaderedContentControl.cs
- StylusShape.cs
- UserMapPath.cs
- TypeDependencyAttribute.cs
- CounterSampleCalculator.cs
- HtmlHistory.cs
- COM2FontConverter.cs
- XmlUtil.cs
- MessageDecoder.cs
- Internal.cs
- EntityDataSourceValidationException.cs
- PeerInvitationResponse.cs
- WSDualHttpSecurity.cs
- ObjectViewFactory.cs
- XPathDocumentNavigator.cs
- DefinitionBase.cs
- SchemaComplexType.cs
- PEFileReader.cs
- PreviewKeyDownEventArgs.cs
- XmlUrlEditor.cs
- SystemIcons.cs
- WindowsEditBox.cs
- DrawingContextWalker.cs
- UncommonField.cs
- ColorBlend.cs
- Literal.cs
- UserControlParser.cs
- Columns.cs
- XmlAttributeOverrides.cs
- ExpressionQuoter.cs
- SchemaExporter.cs
- SplitContainerDesigner.cs
- MultiTrigger.cs
- HttpCacheVary.cs
- SelectedGridItemChangedEvent.cs
- FormViewDeleteEventArgs.cs
- TextPointerBase.cs
- XmlUnspecifiedAttribute.cs
- WebPartConnectionsCancelEventArgs.cs
- SQLDoubleStorage.cs
- AnonymousIdentificationSection.cs
- ConnectionConsumerAttribute.cs
- XmlConverter.cs
- Matrix.cs
- StrongNamePublicKeyBlob.cs
- TemplateControl.cs
- XsltSettings.cs
- ToolStripAdornerWindowService.cs
- EnterpriseServicesHelper.cs
- PlatformNotSupportedException.cs
- UnsafeNativeMethods.cs
- unsafenativemethodsother.cs
- ToolStripContentPanelRenderEventArgs.cs
- FileDialogCustomPlacesCollection.cs
- XmlSortKey.cs
- SecurityTokenAttachmentMode.cs
- BaseDataList.cs
- Memoizer.cs
- FunctionQuery.cs
- ParamArrayAttribute.cs
- TreeIterators.cs
- MimeXmlImporter.cs
- StaticExtension.cs
- RuleEngine.cs
- configsystem.cs
- HttpProfileGroupBase.cs
- ServiceMetadataBehavior.cs
- objectresult_tresulttype.cs
- DataBinding.cs
- WebEventCodes.cs
- MetadataItemEmitter.cs
- StrokeCollectionConverter.cs
- AuthorizationSection.cs
- TimeSpanConverter.cs
- ChameleonKey.cs
- DataBoundControlActionList.cs
- RegistryKey.cs
- RepeaterItem.cs
- AdapterUtil.cs
- Simplifier.cs
- BitmapEffectGroup.cs
- ControlDesigner.cs
- InteropBitmapSource.cs
- SystemIPGlobalProperties.cs
- HtmlFormParameterWriter.cs
- HyperLinkField.cs
- DataSourceSelectArguments.cs
- DesignTimeVisibleAttribute.cs
- StrokeDescriptor.cs
- DataRowChangeEvent.cs
- InteropBitmapSource.cs
- SQLString.cs
- DocumentPaginator.cs
- ZipIOExtraField.cs
- InputReferenceExpression.cs