Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / LicenseException.cs / 1305376 / LicenseException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")] // must not, a Type is required in all constructors. [Serializable] public class LicenseException : SystemException { private Type type; private object instance; ///Represents the exception thrown when a component cannot be granted a license. ////// public LicenseException(Type type) : this(type, null, SR.GetString(SR.LicExceptionTypeOnly, type.FullName)) { } ///Initializes a new instance of the ///class for the /// specified type. /// public LicenseException(Type type, object instance) : this(type, null, SR.GetString(SR.LicExceptionTypeAndInstance, type.FullName, instance.GetType().FullName)) { } ///Initializes a new instance of the ///class for the /// specified type and instance. /// public LicenseException(Type type, object instance, string message) : base(message) { this.type = type; this.instance = instance; HResult = HResults.License; } ///Initializes a new instance of the ///class for the /// specified type and instance with the specified message. /// public LicenseException(Type type, object instance, string message, Exception innerException) : base(message, innerException) { this.type = type; this.instance = instance; HResult = HResults.License; } ///Initializes a new instance of the ///class for the /// specified innerException, type and instance with the specified message. /// Need this constructor since Exception implements ISerializable. /// protected LicenseException(SerializationInfo info, StreamingContext context) : base (info, context) { type = (Type) info.GetValue("type", typeof(Type)); instance = info.GetValue("instance", typeof(object)); } ////// public Type LicensedType { get { return type; } } ///Gets the type of the component that was not granted a license. ////// Need this since Exception implements ISerializable and we have fields to save out. /// [SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) { throw new ArgumentNullException("info"); } info.AddValue("type", type); info.AddValue("instance", instance); base.GetObjectData(info, context); } } } // 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
- SafeNativeMethodsOther.cs
- HashAlgorithm.cs
- HtmlDocument.cs
- HttpWebRequestElement.cs
- WebPartAuthorizationEventArgs.cs
- RelationshipWrapper.cs
- PersonalizationProviderHelper.cs
- _CookieModule.cs
- BitmapMetadata.cs
- SplashScreenNativeMethods.cs
- CommandLineParser.cs
- DivideByZeroException.cs
- InitializationEventAttribute.cs
- Sequence.cs
- LocalFileSettingsProvider.cs
- TcpChannelListener.cs
- ZoneButton.cs
- VirtualizingStackPanel.cs
- PointHitTestResult.cs
- DataBinder.cs
- PropertyDescriptorGridEntry.cs
- LocalizedNameDescriptionPair.cs
- FunctionUpdateCommand.cs
- NameSpaceExtractor.cs
- SqlErrorCollection.cs
- ResourceDescriptionAttribute.cs
- DiagnosticsElement.cs
- RegularExpressionValidator.cs
- KeyGestureValueSerializer.cs
- Vector3DValueSerializer.cs
- RawAppCommandInputReport.cs
- PolyBezierSegment.cs
- EmptyStringExpandableObjectConverter.cs
- ArraySubsetEnumerator.cs
- NullExtension.cs
- HttpModuleAction.cs
- DataDesignUtil.cs
- ProcessThreadCollection.cs
- ThumbAutomationPeer.cs
- FacetDescriptionElement.cs
- SqlXmlStorage.cs
- ProgressBar.cs
- UnsafeNativeMethods.cs
- MemberRelationshipService.cs
- KeyProperty.cs
- CodeSnippetStatement.cs
- Asn1IntegerConverter.cs
- ManipulationDeltaEventArgs.cs
- EmptyReadOnlyDictionaryInternal.cs
- SecurityVerifiedMessage.cs
- SessionStateContainer.cs
- CompilationUnit.cs
- JsonFormatReaderGenerator.cs
- CustomCredentialPolicy.cs
- TableLayoutPanelCellPosition.cs
- XmlNode.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- WebConfigurationHost.cs
- SqlMetaData.cs
- ExpressionBinding.cs
- LogicalExpr.cs
- OutgoingWebResponseContext.cs
- HMAC.cs
- WebPartVerb.cs
- TagNameToTypeMapper.cs
- BulletedList.cs
- RootBrowserWindow.cs
- VirtualPathData.cs
- BaseServiceProvider.cs
- DescendantOverDescendantQuery.cs
- ArgumentNullException.cs
- Encoder.cs
- FacetEnabledSchemaElement.cs
- RuntimeConfigLKG.cs
- IdentityNotMappedException.cs
- Literal.cs
- RealProxy.cs
- EventBuilder.cs
- CompilationRelaxations.cs
- XmlCollation.cs
- Single.cs
- CodeLinePragma.cs
- ResourceKey.cs
- WebPartConnectionsCancelVerb.cs
- FontStretches.cs
- SingleResultAttribute.cs
- AbsoluteQuery.cs
- TextEditorSelection.cs
- DurationConverter.cs
- FixedStringLookup.cs
- AuthenticationModeHelper.cs
- ToolTipAutomationPeer.cs
- Socket.cs
- InfoCardProofToken.cs
- DnsEndPoint.cs
- TypeUtil.cs
- Item.cs
- ModifiableIteratorCollection.cs
- SQLDecimal.cs
- DeclaredTypeElement.cs