
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
GroupDocs.Classification-Cloud
Advanced tools
GroupDocs.Classification Cloud for .NET is a programming SDK that allows software developers to classify documents and raw texts from within their own applications.
This repository contains GroupDocs.Classification Cloud SDK for .NET source code. This SDK allows you to work with GroupDocs.Classification Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.
See API Reference for full API specification.
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get NuGet distribution (recommended). For more details, please visit our documentation website.
To use GroupDocs.Classification for Cloud .NET SDK you need to register an account with GroupDocs Cloud Dashboard and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see GroupDocs Cloud Pricing.
From the command line:
`nuget install GroupDocs.Classification-Cloud`
From Package Manager:
`PM> Install-Package GroupDocs.Classification-Cloud`
From within Visual Studio:
The examples below show how your application have to initiate and classify "pdf" file using GroupDocs.Classification-Cloud library:
// Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
string MyClientId = "";
string MyClientSecret = "";
// Create instance of the API
var configuration = new Configuration { ClientId = MyClientId, ClientSecret = MyClientSecret };
var api = new ClassificationApi(configuration);
// Get supported file formats
var response = api.GetSupportedFileFormats();
foreach (var format in response.Formats)
{
Debug.Print(format.ToString());
}
Tests contain various examples of using the SDK.
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Free Trial
FAQs
GroupDocs.Classification Cloud for .NET is a programming SDK that allows software developers to classify documents and raw texts from within their own applications.
We found that groupdocs.classification-cloud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.