Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- DrawToolTipEventArgs.cs
- DataGridViewTextBoxColumn.cs
- StringReader.cs
- PrintDocument.cs
- AssociativeAggregationOperator.cs
- WebPartUserCapability.cs
- designeractionlistschangedeventargs.cs
- XmlSchemaValidator.cs
- OdbcCommand.cs
- TextEncodedRawTextWriter.cs
- Knowncolors.cs
- ObjectPersistData.cs
- RepeaterItem.cs
- DetailsViewRowCollection.cs
- TraceContext.cs
- StateInitialization.cs
- EnumerableWrapperWeakToStrong.cs
- WSHttpSecurity.cs
- BufferedReadStream.cs
- SizeAnimationBase.cs
- SizeFConverter.cs
- ExpressionNode.cs
- TemplateColumn.cs
- XPathBuilder.cs
- webbrowsersite.cs
- PropertyRef.cs
- CounterSample.cs
- StatusBar.cs
- AccessControlEntry.cs
- Geometry.cs
- Types.cs
- ImageAutomationPeer.cs
- BufferedGraphics.cs
- FaultContext.cs
- TimeoutConverter.cs
- GraphicsContainer.cs
- PasswordRecoveryDesigner.cs
- PersonalizationDictionary.cs
- DateTimeConstantAttribute.cs
- MultiTouchSystemGestureLogic.cs
- Single.cs
- GlobalEventManager.cs
- NamedPipeTransportSecurity.cs
- EncodingStreamWrapper.cs
- ButtonBaseAutomationPeer.cs
- CustomDictionarySources.cs
- NonClientArea.cs
- DataSpaceManager.cs
- SuspendDesigner.cs
- AuthenticodeSignatureInformation.cs
- SelectionRangeConverter.cs
- Module.cs
- ToolStripSeparator.cs
- TypeConverterAttribute.cs
- TableLayoutSettings.cs
- EntityConnectionStringBuilder.cs
- RuntimeConfigurationRecord.cs
- DataContractSerializerOperationFormatter.cs
- ComponentEvent.cs
- TemplateBindingExpression.cs
- BitmapEffectDrawing.cs
- ITextView.cs
- CryptoKeySecurity.cs
- Property.cs
- PopupRoot.cs
- DataSourceSelectArguments.cs
- SessionStateItemCollection.cs
- CancellationTokenSource.cs
- METAHEADER.cs
- TableChangeProcessor.cs
- HttpHandlerActionCollection.cs
- FaultBookmark.cs
- DbXmlEnabledProviderManifest.cs
- ValueTable.cs
- CursorInteropHelper.cs
- WebUtility.cs
- AutomationElementIdentifiers.cs
- WebRequest.cs
- TabItem.cs
- GeometryModel3D.cs
- backend.cs
- AliasExpr.cs
- XPathNodeHelper.cs
- OSEnvironmentHelper.cs
- ProxyFragment.cs
- ModuleBuilderData.cs
- BCLDebug.cs
- ErrorStyle.cs
- TrackingDataItemValue.cs
- AsyncInvokeContext.cs
- DateTime.cs
- CryptoConfig.cs
- KeyboardEventArgs.cs
- TextElementEnumerator.cs
- BinaryObjectWriter.cs
- ServicePrincipalNameElement.cs
- AuthenticationManager.cs
- isolationinterop.cs
- BulletDecorator.cs
- SplineKeyFrames.cs