LicenseSetLicense Method (Stream) |
Licenses the component.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic void SetLicense(
Stream stream
)
Public Sub SetLicense (
stream As Stream
)
public:
void SetLicense(
Stream^ stream
)
member SetLicense :
stream : Stream -> unit
Parameters
- stream
- Type: System.IOStream
A stream that contains the license.
RemarksUse this method to load a license from a stream.
ExamplesInitializes a license from a stream.
License license = new License();
license.SetLicense(myStream);
See Also