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
- SmiContextFactory.cs
- DataPagerFieldItem.cs
- httpstaticobjectscollection.cs
- DrawingGroup.cs
- ScrollItemPatternIdentifiers.cs
- ObjectDataSourceSelectingEventArgs.cs
- DateTimeFormatInfoScanner.cs
- FileDialogPermission.cs
- MatrixCamera.cs
- DoubleConverter.cs
- PriorityChain.cs
- SqlBulkCopyColumnMapping.cs
- WindowsListViewScroll.cs
- OptionalColumn.cs
- CommunicationException.cs
- TextBoxLine.cs
- ListDictionaryInternal.cs
- MediaElementAutomationPeer.cs
- RevocationPoint.cs
- _ShellExpression.cs
- XmlRawWriter.cs
- TimelineGroup.cs
- SpellerStatusTable.cs
- DocumentAutomationPeer.cs
- UserControlDesigner.cs
- ClientTarget.cs
- CryptographicAttribute.cs
- DBPropSet.cs
- TrackingRecord.cs
- EntityDataSource.cs
- SchemaMapping.cs
- bidPrivateBase.cs
- OutputCacheSettings.cs
- XmlSchemaObjectTable.cs
- XmlAtomicValue.cs
- FilterableAttribute.cs
- FormatterConverter.cs
- CharKeyFrameCollection.cs
- IDReferencePropertyAttribute.cs
- OptimizedTemplateContentHelper.cs
- NavigationPropertyEmitter.cs
- LowerCaseStringConverter.cs
- ManualResetEventSlim.cs
- StandardTransformFactory.cs
- BaseTemplateBuildProvider.cs
- TextFormatterImp.cs
- DependencyPropertyHelper.cs
- SspiWrapper.cs
- CompilerCollection.cs
- Endpoint.cs
- PerformanceCounterPermissionAttribute.cs
- SqlRowUpdatingEvent.cs
- SpeechRecognizer.cs
- CriticalHandle.cs
- SoapTransportImporter.cs
- XmlUrlResolver.cs
- Command.cs
- ProviderManager.cs
- PointF.cs
- METAHEADER.cs
- BadImageFormatException.cs
- XmlSchemaComplexContentExtension.cs
- SqlCrossApplyToCrossJoin.cs
- MonitoringDescriptionAttribute.cs
- QuestionEventArgs.cs
- Calendar.cs
- SimpleHandlerFactory.cs
- DelayedRegex.cs
- DPTypeDescriptorContext.cs
- CalendarBlackoutDatesCollection.cs
- XmlEntityReference.cs
- selecteditemcollection.cs
- ReadOnlyHierarchicalDataSource.cs
- QuadraticBezierSegment.cs
- DelegateBodyWriter.cs
- WebPartsPersonalizationAuthorization.cs
- SqlNode.cs
- XmlDataSource.cs
- KeyProperty.cs
- WindowsAuthenticationModule.cs
- ProtocolsSection.cs
- HttpDigestClientCredential.cs
- WorkflowViewElement.cs
- WebPartMenu.cs
- ScrollBar.cs
- TableLayoutPanel.cs
- Vector3DAnimationUsingKeyFrames.cs
- ArrayConverter.cs
- PropertyConverter.cs
- PersonalizationProviderHelper.cs
- PrivilegeNotHeldException.cs
- ColumnMapProcessor.cs
- TextPenaltyModule.cs
- TrackingServices.cs
- Point4D.cs
- ImmComposition.cs
- Viewport3DAutomationPeer.cs
- FontStyles.cs
- AttachedAnnotation.cs
- CacheChildrenQuery.cs