License
Contents
[
Hide
]
Inheritance: java.lang.Object
public final class License
Provides methods to license the component. Learn more about licensing here .
Constructors
Constructor | Description |
---|---|
License() | Instantiate the License |
Methods
Method | Description |
---|---|
setLicense(String licensePath) | Licenses the component. |
setLicense(InputStream licenseStream) | Licenses the component. |
License()
public License()
Instantiate the License
setLicense(String licensePath)
public final void setLicense(String licensePath)
Licenses the component.
The following example demonstrates how to set a license passing a path to the license file. string licensePath = "GroupDocs.Signature.lic"; GroupDocs.Signature.License lic = new GroupDocs.Signature.License(); lic.SetLicense(licensePath);
Parameters:
Parameter | Type | Description |
---|---|---|
licensePath | java.lang.String | The license path. |
setLicense(InputStream licenseStream)
public final void setLicense(InputStream licenseStream)
Licenses the component.
The following example demonstrates how to set a license passing Stream of the license file. using (FileStream licenseStream = new FileStream("GroupDocs.Signature.lic", FileMode.Open)) { GroupDocs.Signature.License lic = new GroupDocs.Signature.License(); lic.SetLicense(licenseStream); }
Parameters:
Parameter | Type | Description |
---|---|---|
licenseStream | java.io.InputStream | The license stream. |