Code:
/ 4.0 / 4.0 / untmp / 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;
///
///
/// Provides an implementation of a . The provider works in
/// a similar fashion to Microsoft .NET Framework standard licensing module.
///
[HostProtection(SharedState = true)]
public class LicFileLicenseProvider : LicenseProvider {
///
///
/// Determines if the key retrieved by the method is valid
/// for the specified type.
///
protected virtual bool IsKeyValid(string key, Type type) {
if (key != null) {
return key.StartsWith(GetKey(type));
}
return false;
}
///
///
/// 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);
}
///
///
/// Gets a license for the instance of the component and determines if it is valid.
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XpsFontSerializationService.cs
- IProducerConsumerCollection.cs
- Expression.cs
- EntityDataSourceEntityTypeFilterItem.cs
- ToolStripSeparator.cs
- ToolStripDropDown.cs
- TrueReadOnlyCollection.cs
- RectConverter.cs
- AnonymousIdentificationSection.cs
- _ContextAwareResult.cs
- ImageKeyConverter.cs
- UrlPropertyAttribute.cs
- TemplateGroupCollection.cs
- BackgroundWorker.cs
- SmtpSection.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- HttpResponse.cs
- VSWCFServiceContractGenerator.cs
- PostBackOptions.cs
- ItemTypeToolStripMenuItem.cs
- HashHelpers.cs
- TimerEventSubscription.cs
- EntityParameterCollection.cs
- ReflectionPermission.cs
- ExecutionEngineException.cs
- HttpDictionary.cs
- OleDbDataReader.cs
- TextRangeSerialization.cs
- DateTimeOffset.cs
- QuaternionRotation3D.cs
- RenderingBiasValidation.cs
- HttpMethodConstraint.cs
- DataControlImageButton.cs
- PropertySegmentSerializer.cs
- ArrayWithOffset.cs
- PreservationFileWriter.cs
- XmlComplianceUtil.cs
- WebPartMenuStyle.cs
- PerformanceCounterPermissionEntry.cs
- PointLight.cs
- WebHttpSecurityElement.cs
- SoapEnumAttribute.cs
- DropDownButton.cs
- StringUtil.cs
- ExclusiveHandleList.cs
- ReaderWriterLockWrapper.cs
- AttributeUsageAttribute.cs
- BitStream.cs
- BorderGapMaskConverter.cs
- StandardOleMarshalObject.cs
- MailDefinition.cs
- FontFamilyIdentifier.cs
- NamespaceImport.cs
- JsonEnumDataContract.cs
- ImageListUtils.cs
- sqlcontext.cs
- SmtpClient.cs
- SqlInternalConnectionSmi.cs
- TypeConverterHelper.cs
- PolicyManager.cs
- GACMembershipCondition.cs
- TcpSocketManager.cs
- ConversionHelper.cs
- GraphicsContainer.cs
- PageScaling.cs
- EntitySetDataBindingList.cs
- WebPartTransformer.cs
- ModelTreeEnumerator.cs
- XmlTypeAttribute.cs
- XmlChildNodes.cs
- ModelUtilities.cs
- PopOutPanel.cs
- RegexFCD.cs
- GeneralTransformCollection.cs
- DataGridViewColumnTypePicker.cs
- BindingObserver.cs
- MetadataArtifactLoaderCompositeFile.cs
- RTLAwareMessageBox.cs
- LineInfo.cs
- GetCryptoTransformRequest.cs
- ClientTargetSection.cs
- CancelRequestedQuery.cs
- BaseCollection.cs
- GenericsInstances.cs
- BitmapImage.cs
- InitializationEventAttribute.cs
- Identity.cs
- CodeVariableReferenceExpression.cs
- ScriptReference.cs
- RichTextBox.cs
- DaylightTime.cs
- SequenceNumber.cs
- WebResponse.cs
- XmlComment.cs
- PeerContact.cs
- GC.cs
- ObjectSecurity.cs
- ApplicationCommands.cs
- EffectiveValueEntry.cs
- MD5CryptoServiceProvider.cs