Class License

Class License

Namespace: Aspose.Note
Assembly: Aspose.Note.dll (24.12.0)

Provides methods to license the component.

public sealed class License

Inheritance

objectLicense

Inherited Members

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Examples

In this example, an attempt will be made to find a license file named MyLicense.lic in the folder that contains

the component, in the folder that contains the calling assembly, in the folder of the entry assembly and then in the embedded resources of the calling assembly.

License license = new License();
license.SetLicense("MyLicense.lic");
Dim license As license = New license
License.SetLicense("MyLicense.lic")

Shows how to load a license for Aspose.Note from a file.```csharp Aspose.Note.License license = new Aspose.Note.License(); license.SetLicense(“Aspose.Note.lic”);


Shows how to load a license for Aspose.Note from a stream.```csharp
Aspose.Note.License license = new Aspose.Note.License();
                                                                     using (FileStream myStream = new FileStream("Aspose.Note.lic", FileMode.Open))
                                                                     {
                                                                         license.SetLicense(myStream);
                                                                     }

Shows how to load a license for Aspose.Note from embedded file resource.```csharp // Instantiate the License class Aspose.Note.License license = new Aspose.Note.License();

                                                                               // Pass only the name of the license file embedded in the assembly
                                                                               license.SetLicense("Aspose.Note.lic");

## Constructors

### <a id="Aspose_Note_License__ctor"></a> License\(\)

```csharp
public License()

Methods

SetLicense(string)

Licenses the component.

public void SetLicense(string licenseName)

Parameters

licenseName string

Can be a full or short file name or name of an embedded resource. Use an empty string to switch to evaluation mode.

Examples

In this example, an attempt will be made to find a license file named MyLicense.lic in the folder that contains

the component, in the folder that contains the calling assembly, in the folder of the entry assembly and then in the embedded resources of the calling assembly.

License license = new License();
license.SetLicense("MyLicense.lic");</code></pre>

Shows how to load a license for Aspose.Note from a file.```csharp
Aspose.Note.License license = new Aspose.Note.License();
                                                                   license.SetLicense("Aspose.Note.lic");

Shows how to load a license for Aspose.Note from embedded file resource.```csharp // Instantiate the License class Aspose.Note.License license = new Aspose.Note.License();

                                                                               // Pass only the name of the license file embedded in the assembly
                                                                               license.SetLicense("Aspose.Note.lic");

#### Remarks

<p>Tries to find the license in the following locations:</p>
<p>1. Explicit path.</p>
<p>2. The folder that contains the Aspose component assembly.</p>
<p>3. The folder that contains the client's calling assembly.</p>
<p>4. The folder that contains the entry (startup) assembly.</p>
<p>5. An embedded resource in the client's calling assembly.</p>
<p>
<b>Note:</b>On the .NET Compact Framework, tries to find the license only in these locations:</p>
<p>1. Explicit path.</p>
<p>2. An embedded resource in the client's calling assembly.</p>

### <a id="Aspose_Note_License_SetLicense_System_IO_Stream_"></a> SetLicense\(Stream\)

Licenses the component.

```csharp
public void SetLicense(Stream stream)

Parameters

stream Stream

A stream that contains the license.

Examples


License license = new License();
license.SetLicense(myStream);
Dim license as License = new License
license.SetLicense(myStream)

Shows how to load a license for Aspose.Note from a stream.

Aspose.Note.License license = new Aspose.Note.License();
using (FileStream myStream = new FileStream(“Aspose.Note.lic”, FileMode.Open))
{
license.SetLicense(myStream);
}


#### Remarks

<p>Use this method to load a license from a stream.</p>