Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Note pour .NET 22.3

Download  Support Forum 

File Details

  • Téléchargements :
  • 1
  • Taille du fichier :
  • 14.1 MB
  • Posted By:
  • alexei.s
  • Vues :
  • 17
  • Date d'ajout :
  • : 4 days ago [4/7/2022]

File Details

Prise en charge des licences mesurées

Intégré le support du metered licensing, c’est à dire “pay as you use”. L’extrait de code C# suivant montre comment une licence Aspose Metered peut être initialisée :

// set metered public and private keys
Aspose.Note.Metered metered = new Aspose.Note.Metered();
// Access the setMeteredKey property and pass public and private keys as parameters
metered.SetMeteredKey("<type public key here>", "<type private key here>");

Lire des documents en ligne OneNote®

Auparavant, dans certains cas, l’API n’était pas en mesure de lire les documents OneNote® Online modifiés via l’API Aspose.Note. Ce problème a été résolu maintenant.

L’exemple de code C# suivant traite les formats de fichier OneNote® 2010 et OneNote® Online via l’API :

// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

var document = new Aspose.Note.Document(dataDir + "Aspose.one");
switch (document.FileFormat)
{
    case FileFormat.OneNote2010:
        // Process OneNote 2010
        break;
    case FileFormat.OneNoteOnline:
        // Process OneNote Online
        break;
}

Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.Note for .NET 22.3 Release Notes.

 Français