Code:
/ DotNET / DotNET / 8.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
- IdentityManager.cs
- ClearTypeHintValidation.cs
- ListenerConnectionModeReader.cs
- SortKey.cs
- XmlNodeChangedEventArgs.cs
- CategoryAttribute.cs
- FileClassifier.cs
- PointAnimationUsingKeyFrames.cs
- NameScopePropertyAttribute.cs
- WindowHideOrCloseTracker.cs
- VarInfo.cs
- CultureInfoConverter.cs
- BindToObject.cs
- XamlVector3DCollectionSerializer.cs
- HatchBrush.cs
- ServiceModelEnumValidator.cs
- returneventsaver.cs
- GridViewDeletedEventArgs.cs
- TrailingSpaceComparer.cs
- SingleAnimationUsingKeyFrames.cs
- AdornerPresentationContext.cs
- LogicalChannel.cs
- TableLayoutStyleCollection.cs
- ProcessHostMapPath.cs
- FormsAuthenticationEventArgs.cs
- AxParameterData.cs
- BatchWriter.cs
- StaticFileHandler.cs
- JsonReaderWriterFactory.cs
- TemplateBuilder.cs
- SelectionUIService.cs
- ValidationVisibilityAttribute.cs
- AssemblyAttributes.cs
- TemplatedWizardStep.cs
- InputMethodStateChangeEventArgs.cs
- RelatedCurrencyManager.cs
- ClientRoleProvider.cs
- XmlBufferReader.cs
- ArgumentOutOfRangeException.cs
- GatewayDefinition.cs
- FacetChecker.cs
- SingleObjectCollection.cs
- ResourceDescriptionAttribute.cs
- CodeDOMUtility.cs
- SynchronizationLockException.cs
- PrimitiveCodeDomSerializer.cs
- ComboBox.cs
- MetadataFile.cs
- SqlProvider.cs
- Int32Collection.cs
- Size.cs
- GeometryDrawing.cs
- UIntPtr.cs
- SectionXmlInfo.cs
- OpenTypeLayout.cs
- ToolStripSystemRenderer.cs
- LinkUtilities.cs
- HttpStreamXmlDictionaryWriter.cs
- Pen.cs
- MethodSet.cs
- DocumentViewerBaseAutomationPeer.cs
- ConfigurationManager.cs
- ToolStripScrollButton.cs
- SiteMap.cs
- PageBreakRecord.cs
- basecomparevalidator.cs
- XmlSchemaAll.cs
- DSASignatureDeformatter.cs
- HttpTransportSecurity.cs
- CTreeGenerator.cs
- XLinq.cs
- ObjectAnimationBase.cs
- PerfProviderCollection.cs
- XPathPatternBuilder.cs
- Bezier.cs
- TemplateFactory.cs
- Comparer.cs
- TransformerTypeCollection.cs
- IncrementalReadDecoders.cs
- ObjRef.cs
- FormViewCommandEventArgs.cs
- AlternationConverter.cs
- BaseProcessor.cs
- XmlDataSourceNodeDescriptor.cs
- PrivilegeNotHeldException.cs
- EventDescriptor.cs
- GradientStopCollection.cs
- AttachedPropertyMethodSelector.cs
- ValidatingCollection.cs
- VisualBasicSettingsHandler.cs
- DetailsViewDeleteEventArgs.cs
- Stackframe.cs
- Aes.cs
- SignedXmlDebugLog.cs
- BamlCollectionHolder.cs
- PinnedBufferMemoryStream.cs
- MsmqActivation.cs
- PasswordBoxAutomationPeer.cs
- GradientBrush.cs
- NonBatchDirectoryCompiler.cs