Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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); } } } // 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
- DataRowExtensions.cs
- StringStorage.cs
- XmlHierarchyData.cs
- SHA1CryptoServiceProvider.cs
- TripleDESCryptoServiceProvider.cs
- X509ChainPolicy.cs
- ComponentRenameEvent.cs
- AnnotationResourceCollection.cs
- TypeDescriptionProvider.cs
- ControlCachePolicy.cs
- InputElement.cs
- TreeViewHitTestInfo.cs
- TabItemAutomationPeer.cs
- SchemaElementDecl.cs
- CallbackException.cs
- CustomLineCap.cs
- GrowingArray.cs
- FreezableCollection.cs
- FormsAuthenticationTicket.cs
- ThrowHelper.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- UpDownBase.cs
- DoubleCollectionValueSerializer.cs
- Interop.cs
- xml.cs
- PreviewControlDesigner.cs
- Ray3DHitTestResult.cs
- _AutoWebProxyScriptHelper.cs
- AnimationException.cs
- TextElementCollection.cs
- MarkerProperties.cs
- formatter.cs
- BufferAllocator.cs
- SQLDecimalStorage.cs
- RadioButtonStandardAdapter.cs
- ProfileSection.cs
- TreeNodeStyle.cs
- WebPartsPersonalizationAuthorization.cs
- ToolStripSplitButton.cs
- ConnectionPointCookie.cs
- QuaternionKeyFrameCollection.cs
- ListItemViewAttribute.cs
- UnsafeNativeMethods.cs
- WebPartEditorApplyVerb.cs
- FactoryMaker.cs
- AutoResizedEvent.cs
- JumpList.cs
- HtmlInputButton.cs
- CacheRequest.cs
- SeparatorAutomationPeer.cs
- DriveNotFoundException.cs
- OledbConnectionStringbuilder.cs
- ForwardPositionQuery.cs
- DoubleLink.cs
- CriticalFinalizerObject.cs
- AttributeEmitter.cs
- AffineTransform3D.cs
- NativeMethods.cs
- Encoder.cs
- MenuItemBindingCollection.cs
- TypeInfo.cs
- DesignerAdapterAttribute.cs
- BatchStream.cs
- StateWorkerRequest.cs
- x509store.cs
- TableItemPattern.cs
- CheckBoxBaseAdapter.cs
- AnchorEditor.cs
- Variable.cs
- EditorPartDesigner.cs
- RegionIterator.cs
- EventEntry.cs
- HttpCacheParams.cs
- NoResizeSelectionBorderGlyph.cs
- BasicDesignerLoader.cs
- UserUseLicenseDictionaryLoader.cs
- PtsHelper.cs
- CredentialCache.cs
- DefaultTraceListener.cs
- PersonalizationProvider.cs
- DebugHandleTracker.cs
- ConfigXmlAttribute.cs
- SiteIdentityPermission.cs
- UserControlCodeDomTreeGenerator.cs
- MeshGeometry3D.cs
- LinqDataView.cs
- MulticastDelegate.cs
- PageCodeDomTreeGenerator.cs
- DependencyObjectType.cs
- ContractDescription.cs
- MenuCommand.cs
- XPathDescendantIterator.cs
- HotSpot.cs
- EncoderParameter.cs
- RouteItem.cs
- Win32.cs
- ControlFilterExpression.cs
- KeyFrames.cs
- SqlDesignerDataSourceView.cs
- RowSpanVector.cs