Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- AssemblyHelper.cs
- RelationshipConstraintValidator.cs
- _SslState.cs
- Control.cs
- NetMsmqSecurityElement.cs
- Matrix3DStack.cs
- HttpStaticObjectsCollectionWrapper.cs
- FileEnumerator.cs
- EntityDataSourceWrapperCollection.cs
- WeakRefEnumerator.cs
- NamespaceEmitter.cs
- xdrvalidator.cs
- FormViewCommandEventArgs.cs
- GlyphingCache.cs
- DecoderReplacementFallback.cs
- ImageMap.cs
- Duration.cs
- Grant.cs
- BooleanProjectedSlot.cs
- securitycriticaldataClass.cs
- UInt16Storage.cs
- ControlPager.cs
- DocumentGridContextMenu.cs
- SecurityUniqueId.cs
- MimeTypePropertyAttribute.cs
- CodeCatchClause.cs
- EpmContentDeSerializer.cs
- RenderDataDrawingContext.cs
- IdnElement.cs
- _UncName.cs
- ObjectManager.cs
- WebServiceMethodData.cs
- ComplexBindingPropertiesAttribute.cs
- FontFamilyIdentifier.cs
- LookupTables.cs
- KernelTypeValidation.cs
- SessionStateModule.cs
- IsolatedStorageFileStream.cs
- Enum.cs
- EpmSyndicationContentDeSerializer.cs
- NullableIntMinMaxAggregationOperator.cs
- NetworkStream.cs
- Int16.cs
- KoreanCalendar.cs
- XmlCharType.cs
- TypeBuilder.cs
- DataSetViewSchema.cs
- Property.cs
- HostedHttpContext.cs
- DecimalConstantAttribute.cs
- PostBackOptions.cs
- ReservationCollection.cs
- XmlProcessingInstruction.cs
- OrderToken.cs
- DbProviderServices.cs
- ArgumentNullException.cs
- pingexception.cs
- OutOfProcStateClientManager.cs
- MdImport.cs
- Action.cs
- ExpressionQuoter.cs
- WebEvents.cs
- EdmMember.cs
- ResXResourceWriter.cs
- XmlNullResolver.cs
- RecordManager.cs
- ImagingCache.cs
- WorkflowViewStateService.cs
- PageHandlerFactory.cs
- Pair.cs
- HtmlFormParameterWriter.cs
- StronglyTypedResourceBuilder.cs
- TimeSpanStorage.cs
- PointAnimationClockResource.cs
- EntryPointNotFoundException.cs
- DesignerDataSourceView.cs
- PropertySegmentSerializationProvider.cs
- CodeBinaryOperatorExpression.cs
- DashStyle.cs
- TemplateApplicationHelper.cs
- DocumentViewerAutomationPeer.cs
- NullRuntimeConfig.cs
- DeferredElementTreeState.cs
- RegexMatch.cs
- WebBrowser.cs
- FastPropertyAccessor.cs
- DirectionalLight.cs
- CallbackException.cs
- OdbcCommand.cs
- ClonableStack.cs
- RegexCapture.cs
- DelegatingConfigHost.cs
- SelectedCellsCollection.cs
- XmlWriter.cs
- ListenerHandler.cs
- UnsafeNativeMethods.cs
- ExpressionsCollectionEditor.cs
- DataList.cs
- ModelToObjectValueConverter.cs
- BitmapMetadataEnumerator.cs