LicenseSetLicense Method (Stream)

Licenses the component.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public void SetLicense(
	Stream stream
)

Parameters

stream
Type: System.IOStream
A stream that contains the license.
Remarks

Use this method to load a license from a stream.

Examples
Initializes a license from a stream.
License license = new License();
license.SetLicense(myStream);
See Also