Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PerformanceCounterPermission.cs
- HttpEncoder.cs
- DocComment.cs
- ContentValidator.cs
- PropertyCondition.cs
- WindowShowOrOpenTracker.cs
- MobileFormsAuthentication.cs
- ItemCheckEvent.cs
- DataMemberAttribute.cs
- FrameSecurityDescriptor.cs
- TypeHelpers.cs
- QuestionEventArgs.cs
- SmtpMail.cs
- PageFunction.cs
- CryptoConfig.cs
- XsltArgumentList.cs
- SplashScreen.cs
- HMACSHA384.cs
- StorageEndPropertyMapping.cs
- Content.cs
- ComPlusTraceRecord.cs
- DBPropSet.cs
- SingleKeyFrameCollection.cs
- DataGridSortCommandEventArgs.cs
- SignedInfo.cs
- panel.cs
- CommandConverter.cs
- Attributes.cs
- SqlSupersetValidator.cs
- XPathNodeInfoAtom.cs
- DatagridviewDisplayedBandsData.cs
- EntityCommandCompilationException.cs
- CodeDomExtensionMethods.cs
- SolidColorBrush.cs
- BrushMappingModeValidation.cs
- CodeMemberEvent.cs
- PropertyStore.cs
- DeflateStream.cs
- ContextMenuService.cs
- PresentationAppDomainManager.cs
- ComplexTypeEmitter.cs
- SingleAnimationBase.cs
- ClockGroup.cs
- TaskFormBase.cs
- OdbcConnectionStringbuilder.cs
- EntityException.cs
- ContextMenuStrip.cs
- Throw.cs
- ToolStripHighContrastRenderer.cs
- SqlCacheDependency.cs
- MULTI_QI.cs
- ExternalCalls.cs
- IfAction.cs
- SQLInt64.cs
- MachineSettingsSection.cs
- WebPartDescription.cs
- SigningProgress.cs
- GregorianCalendarHelper.cs
- ProtocolsSection.cs
- DataServiceExpressionVisitor.cs
- WebPartVerb.cs
- CallbackValidator.cs
- WebRequestModuleElementCollection.cs
- Transform3D.cs
- ClientSession.cs
- XsdSchemaFileEditor.cs
- ExtentKey.cs
- ListParaClient.cs
- Slider.cs
- TraceContext.cs
- _NegoStream.cs
- PlainXmlWriter.cs
- AnimatedTypeHelpers.cs
- Transform3DGroup.cs
- InputReport.cs
- ProtocolViolationException.cs
- TrackingStringDictionary.cs
- ProviderUtil.cs
- XmlHierarchicalDataSourceView.cs
- Oid.cs
- StoryFragments.cs
- PingReply.cs
- dataprotectionpermission.cs
- ViewBase.cs
- TraceContext.cs
- SequenceDesigner.xaml.cs
- KeyValueInternalCollection.cs
- MethodCallExpression.cs
- MembershipSection.cs
- FlowchartDesigner.Helpers.cs
- GeneratedCodeAttribute.cs
- DetailsViewPageEventArgs.cs
- GenericEnumerator.cs
- DES.cs
- WebPartManager.cs
- CustomPeerResolverService.cs
- _DynamicWinsockMethods.cs
- XmlAttributes.cs
- DoubleAverageAggregationOperator.cs
- SqlProfileProvider.cs