Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / LicFileLicenseProvider.cs / 1 / LicFileLicenseProvider.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.Remoting; using System.Security.Permissions; ////// /// [HostProtection(SharedState = true)] public class LicFileLicenseProvider : LicenseProvider { ///Provides an implementation of a ///. The provider works in /// a similar fashion to Microsoft .NET Framework standard licensing module. /// /// protected virtual bool IsKeyValid(string key, Type type) { if (key != null) { return key.StartsWith(GetKey(type)); } return false; } ///Determines if the key retrieved by the ///method is valid /// for the specified type. /// /// Creates a key for the specified type. /// protected virtual string GetKey(Type type) { // This string should not be localized. // return string.Format(CultureInfo.InvariantCulture, "{0} is a licensed component.", type.FullName); } ////// /// public override License GetLicense(LicenseContext context, Type type, object instance, bool allowExceptions) { LicFileLicense lic = null; Debug.Assert(context != null, "No context provided!"); if (context != null) { if (context.UsageMode == LicenseUsageMode.Runtime) { string key = context.GetSavedLicenseKey(type, null); if (key != null && IsKeyValid(key, type)) { lic = new LicFileLicense(this, key); } } if (lic == null) { string modulePath = null; if (context != null) { ITypeResolutionService resolver = (ITypeResolutionService)context.GetService(typeof(ITypeResolutionService)); if (resolver != null) { modulePath = resolver.GetPathOfAssembly(type.Assembly.GetName()); } } if (modulePath == null) { modulePath = type.Module.FullyQualifiedName; } string moduleDir = Path.GetDirectoryName(modulePath); string licenseFile = moduleDir + "\\" + type.FullName + ".lic"; Debug.WriteLine("Looking for license in: " + licenseFile); if (File.Exists(licenseFile)) { Stream licStream = new FileStream(licenseFile, FileMode.Open, FileAccess.Read, FileShare.Read); StreamReader sr = new StreamReader(licStream); string s = sr.ReadLine(); sr.Close(); if (IsKeyValid(s, type)) { lic = new LicFileLicense(this, GetKey(type)); } } if (lic != null) { context.SetSavedLicenseKey(type, lic.LicenseKey); } } } return lic; } private class LicFileLicense : License { private LicFileLicenseProvider owner; private string key; public LicFileLicense(LicFileLicenseProvider owner, string key) { this.owner = owner; this.key = key; } public override string LicenseKey { get { return key; } } public override void Dispose() { } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a license for the instance of the component and determines if it is valid. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.Remoting; using System.Security.Permissions; ////// /// [HostProtection(SharedState = true)] public class LicFileLicenseProvider : LicenseProvider { ///Provides an implementation of a ///. The provider works in /// a similar fashion to Microsoft .NET Framework standard licensing module. /// /// protected virtual bool IsKeyValid(string key, Type type) { if (key != null) { return key.StartsWith(GetKey(type)); } return false; } ///Determines if the key retrieved by the ///method is valid /// for the specified type. /// /// Creates a key for the specified type. /// protected virtual string GetKey(Type type) { // This string should not be localized. // return string.Format(CultureInfo.InvariantCulture, "{0} is a licensed component.", type.FullName); } ////// /// public override License GetLicense(LicenseContext context, Type type, object instance, bool allowExceptions) { LicFileLicense lic = null; Debug.Assert(context != null, "No context provided!"); if (context != null) { if (context.UsageMode == LicenseUsageMode.Runtime) { string key = context.GetSavedLicenseKey(type, null); if (key != null && IsKeyValid(key, type)) { lic = new LicFileLicense(this, key); } } if (lic == null) { string modulePath = null; if (context != null) { ITypeResolutionService resolver = (ITypeResolutionService)context.GetService(typeof(ITypeResolutionService)); if (resolver != null) { modulePath = resolver.GetPathOfAssembly(type.Assembly.GetName()); } } if (modulePath == null) { modulePath = type.Module.FullyQualifiedName; } string moduleDir = Path.GetDirectoryName(modulePath); string licenseFile = moduleDir + "\\" + type.FullName + ".lic"; Debug.WriteLine("Looking for license in: " + licenseFile); if (File.Exists(licenseFile)) { Stream licStream = new FileStream(licenseFile, FileMode.Open, FileAccess.Read, FileShare.Read); StreamReader sr = new StreamReader(licStream); string s = sr.ReadLine(); sr.Close(); if (IsKeyValid(s, type)) { lic = new LicFileLicense(this, GetKey(type)); } } if (lic != null) { context.SetSavedLicenseKey(type, lic.LicenseKey); } } } return lic; } private class LicFileLicense : License { private LicFileLicenseProvider owner; private string key; public LicFileLicense(LicFileLicenseProvider owner, string key) { this.owner = owner; this.key = key; } public override string LicenseKey { get { return key; } } public override void Dispose() { } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a license for the instance of the component and determines if it is valid. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CompilerErrorCollection.cs
- ScriptResourceInfo.cs
- Buffer.cs
- WebPartPersonalization.cs
- autovalidator.cs
- Registry.cs
- RSACryptoServiceProvider.cs
- ILGenerator.cs
- RequestNavigateEventArgs.cs
- InternalEnumValidator.cs
- ForEach.cs
- DependencyPropertyDescriptor.cs
- ExecutionEngineException.cs
- TextFormatterImp.cs
- __FastResourceComparer.cs
- CssTextWriter.cs
- EncodingNLS.cs
- HtmlElementCollection.cs
- DataGridTemplateColumn.cs
- FigureParaClient.cs
- RootDesignerSerializerAttribute.cs
- ButtonChrome.cs
- DataTableReaderListener.cs
- AtomPub10ServiceDocumentFormatter.cs
- ArrangedElement.cs
- SmtpNegotiateAuthenticationModule.cs
- JsonCollectionDataContract.cs
- DataServiceEntityAttribute.cs
- BindingSourceDesigner.cs
- XmlConverter.cs
- XAMLParseException.cs
- EventWaitHandleSecurity.cs
- AbandonedMutexException.cs
- DataGridViewCellValueEventArgs.cs
- IntSecurity.cs
- KeyValueConfigurationElement.cs
- CommandConverter.cs
- EntityDataSourceContainerNameConverter.cs
- ScriptBehaviorDescriptor.cs
- InputDevice.cs
- CodeIdentifiers.cs
- SettingsBase.cs
- InputScope.cs
- GroupDescription.cs
- Int64Converter.cs
- MobileListItemCollection.cs
- ButtonChrome.cs
- DataBoundLiteralControl.cs
- Converter.cs
- DefaultSection.cs
- _FixedSizeReader.cs
- autovalidator.cs
- GPPOINTF.cs
- ISAPIApplicationHost.cs
- WriteTimeStream.cs
- NamedServiceModelExtensionCollectionElement.cs
- InvalidProgramException.cs
- WindowsRebar.cs
- XmlWriterDelegator.cs
- WebPartCatalogCloseVerb.cs
- IntegrationExceptionEventArgs.cs
- ScaleTransform.cs
- dtdvalidator.cs
- LineProperties.cs
- XmlWrappingReader.cs
- PerformanceCounterPermissionEntry.cs
- SymDocumentType.cs
- _SafeNetHandles.cs
- FieldNameLookup.cs
- DeviceFilterDictionary.cs
- InvalidComObjectException.cs
- SiteMapNodeItem.cs
- LeafCellTreeNode.cs
- StylusTip.cs
- ReadWriteControlDesigner.cs
- PointAnimationUsingKeyFrames.cs
- WindowsAltTab.cs
- Emitter.cs
- SimpleTypesSurrogate.cs
- StringInfo.cs
- DesignerDataTableBase.cs
- PackWebResponse.cs
- WebPartCollection.cs
- StylusPointPropertyInfo.cs
- StateDesigner.Helpers.cs
- FloaterBaseParagraph.cs
- ExpanderAutomationPeer.cs
- DesignTimeParseData.cs
- SchemaObjectWriter.cs
- HuffmanTree.cs
- QuotedPrintableStream.cs
- Header.cs
- NgenServicingAttributes.cs
- XsltQilFactory.cs
- DetailsViewAutoFormat.cs
- TextServicesCompartmentContext.cs
- EventSourceCreationData.cs
- ParserContext.cs
- PageRanges.cs
- OutKeywords.cs