Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / LicenseException.cs / 1 / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int32Collection.cs
- XmlRawWriter.cs
- EmbeddedMailObject.cs
- ToolStripContentPanelRenderEventArgs.cs
- EDesignUtil.cs
- Scripts.cs
- ToolBarTray.cs
- URLIdentityPermission.cs
- MemoryMappedFile.cs
- AdRotator.cs
- GeneralEndpointIdentity.cs
- DbCommandTree.cs
- PagesSection.cs
- UnsafeMethods.cs
- EdmProviderManifest.cs
- DropDownButton.cs
- CachedPathData.cs
- AutomationProperty.cs
- EntityProviderFactory.cs
- FeatureSupport.cs
- BinaryCommonClasses.cs
- ListItemCollection.cs
- SizeConverter.cs
- BinaryCommonClasses.cs
- TranslateTransform.cs
- FormViewModeEventArgs.cs
- EdmProperty.cs
- WrapPanel.cs
- XmlNodeReader.cs
- ColorInterpolationModeValidation.cs
- CellIdBoolean.cs
- DateTimeHelper.cs
- PrimitiveXmlSerializers.cs
- TimeStampChecker.cs
- SafeRightsManagementHandle.cs
- ToggleButtonAutomationPeer.cs
- ApplicationCommands.cs
- WebPartHelpVerb.cs
- FontUnitConverter.cs
- ListContractAdapter.cs
- FragmentQuery.cs
- WebPartTransformerCollection.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- DetailsViewInsertEventArgs.cs
- DesignerSerializerAttribute.cs
- FloaterParaClient.cs
- KeyProperty.cs
- XmlIlVisitor.cs
- WmpBitmapDecoder.cs
- IncrementalReadDecoders.cs
- InputLanguageEventArgs.cs
- Util.cs
- SubMenuStyle.cs
- CompModSwitches.cs
- ClientTargetCollection.cs
- MetaType.cs
- DataServiceProcessingPipeline.cs
- ListDictionaryInternal.cs
- FixedSchema.cs
- ApplicationServiceManager.cs
- BuildResultCache.cs
- PriorityBinding.cs
- EditorPart.cs
- PaintValueEventArgs.cs
- BitmapSizeOptions.cs
- DetailsViewModeEventArgs.cs
- SendKeys.cs
- SectionRecord.cs
- RawTextInputReport.cs
- TypedMessageConverter.cs
- AuthenticationService.cs
- BrowserTree.cs
- EditBehavior.cs
- InvokerUtil.cs
- DBCommandBuilder.cs
- ECDsa.cs
- SqlClientMetaDataCollectionNames.cs
- DocumentEventArgs.cs
- HttpListenerRequestUriBuilder.cs
- FocusManager.cs
- XDeferredAxisSource.cs
- DbParameterCollection.cs
- RectConverter.cs
- Selection.cs
- PageThemeParser.cs
- StreamReader.cs
- WasEndpointConfigContainer.cs
- WSSecureConversationDec2005.cs
- HyperLinkDataBindingHandler.cs
- GC.cs
- DurableErrorHandler.cs
- ValidationRuleCollection.cs
- basevalidator.cs
- EntityDataSourceUtil.cs
- ContentValidator.cs
- LineProperties.cs
- SqlCommandBuilder.cs
- SqlRowUpdatingEvent.cs
- AssemblyCache.cs
- _BufferOffsetSize.cs