public final class License extends Object
Provides methods to license the component. Learn more about licensing <a href="https://purchase.groupdocs.com/faqs/licensing">here</a>
.
Constructor and Description |
---|
License()
Instantiate the License
|
Modifier and Type | Method and Description |
---|---|
void |
setLicense(InputStream licenseStream)
Licenses the component.
|
void |
setLicense(String licensePath)
Licenses the component.
|
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); }
licenseStream
- The license stream.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);
licensePath
- The license path.