ApiExamples.ApiExampleBase.SetUnlimitedLicense C# (CSharp) Метод

SetUnlimitedLicense() статический приватный Метод

static private SetUnlimitedLicense ( ) : void
Результат void
        internal static void SetUnlimitedLicense()
        {
            if (File.Exists(TestLicenseFileName))
            {
                // This shows how to use an Aspose.Words license when you have purchased one.
                // You don't have to specify full path as shown here. You can specify just the 
                // file name if you copy the license file into the same folder as your application
                // binaries or you add the license to your project as an embedded resource.
                License license = new License();
                license.SetLicense(TestLicenseFileName);
            }
        }