Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / LicFileLicenseProvider.cs / 1305376 / 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() { GC.SuppressFinalize(this); } } } } // 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() { GC.SuppressFinalize(this); } } } } // 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
- AssemblyNameEqualityComparer.cs
- JapaneseCalendar.cs
- BitmapImage.cs
- StringFormat.cs
- FontDriver.cs
- ImportedNamespaceContextItem.cs
- GcHandle.cs
- XmlArrayItemAttribute.cs
- HostingEnvironment.cs
- LogEntryHeaderSerializer.cs
- DifferencingCollection.cs
- DBSqlParserTableCollection.cs
- ScaleTransform.cs
- IntSecurity.cs
- ProbeDuplex11AsyncResult.cs
- PixelShader.cs
- BitmapSourceSafeMILHandle.cs
- BaseValidatorDesigner.cs
- WorkflowPrinting.cs
- DataShape.cs
- EUCJPEncoding.cs
- WmfPlaceableFileHeader.cs
- ContourSegment.cs
- DES.cs
- TextRangeAdaptor.cs
- CssTextWriter.cs
- DiscoveryViaBehavior.cs
- TreeNodeMouseHoverEvent.cs
- IndexingContentUnit.cs
- DataKey.cs
- CustomAttribute.cs
- UpdatePanelControlTrigger.cs
- SendingRequestEventArgs.cs
- CanExecuteRoutedEventArgs.cs
- CapabilitiesState.cs
- TextTreeRootTextBlock.cs
- FileNotFoundException.cs
- MetadataItem.cs
- StringBlob.cs
- DbConnectionHelper.cs
- DiagnosticTrace.cs
- PageContentAsyncResult.cs
- InternalTypeHelper.cs
- QilLiteral.cs
- PartialCachingControl.cs
- MobileRedirect.cs
- ProxyDataContractResolver.cs
- SerializationInfoEnumerator.cs
- ConvertersCollection.cs
- RoutedEventHandlerInfo.cs
- EntityConnectionStringBuilder.cs
- XPathAxisIterator.cs
- ClientConfigPaths.cs
- XmlSchemaType.cs
- SafeEventLogWriteHandle.cs
- ObjectMemberMapping.cs
- SQLUtility.cs
- RotateTransform3D.cs
- CultureSpecificCharacterBufferRange.cs
- Tablet.cs
- XmlHierarchicalEnumerable.cs
- MailBnfHelper.cs
- XmlWellformedWriterHelpers.cs
- WebEvents.cs
- EventLogEntryCollection.cs
- NullEntityWrapper.cs
- BuildManager.cs
- TextRangeEditTables.cs
- WinFormsUtils.cs
- StandardBindingCollectionElement.cs
- ErrorProvider.cs
- BoolLiteral.cs
- Vector3DKeyFrameCollection.cs
- TreeView.cs
- MediaEntryAttribute.cs
- OdbcConnectionPoolProviderInfo.cs
- TextEditorDragDrop.cs
- HtmlSelect.cs
- cache.cs
- HttpException.cs
- PointLight.cs
- CreateUserErrorEventArgs.cs
- TemplateControl.cs
- ScriptComponentDescriptor.cs
- SectionInformation.cs
- FileVersion.cs
- ProgressBarRenderer.cs
- SmtpDigestAuthenticationModule.cs
- SqlProviderUtilities.cs
- XsdDateTime.cs
- QilXmlReader.cs
- InstanceBehavior.cs
- DataGridRow.cs
- CodeGenerator.cs
- StringValidatorAttribute.cs
- ImageDesigner.cs
- GridSplitterAutomationPeer.cs
- SiteMapDesignerDataSourceView.cs
- Int32RectValueSerializer.cs
- StringDictionary.cs