Class License

Class License

Namespace: Aspose.TeX
Assembly: Aspose.TeX.dll (25.4.0)

Provides methods to license the component.

public class License

Inheritance

object License

Inherited Members

object.GetType() , object.MemberwiseClone() , 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")
```</ms><java>
the component jar file:

```csharp
License license = new License();
license.setLicense("MyLicense.lic");
```</java>
 English