SetLicense

SetLicense(string)

Licentie voor de component.

public void SetLicense(string filePath)
Parameter Type Beschrijving
filePath String Absoluut pad naar licentiebestand.

Voorbeelden

Het volgende voorbeeld laat zien hoe een licentie moet worden ingesteld om een pad naar het licentiebestand door te geven.

string licensePath = "LicenseFile.lic"";
GroupDocs.Parser.License license = new GroupDocs.Parser.License();
lic.SetLicense(licensePath);

Zie ook


SetLicense(Stream)

Licentie voor de component.

public void SetLicense(Stream stream)
Parameter Type Beschrijving
stream Stream Licentiestroom.

Voorbeelden

Het volgende voorbeeld laat zien hoe u een licentie kunt instellen die de stroom van het licentiebestand doorgeeft.

using (FileStream licenseStream = new FileStream("LicenseFile.lic", FileMode.Open))
{
    GroupDocs.Parser.License license = new GroupDocs.Parser.License();
    license.SetLicense(licenseStream);
}

Zie ook