Sidub.Platform.Storage.Http
1.0.26
Prefix Reserved
dotnet add package Sidub.Platform.Storage.Http --version 1.0.26
NuGet\Install-Package Sidub.Platform.Storage.Http -Version 1.0.26
<PackageReference Include="Sidub.Platform.Storage.Http" Version="1.0.26" />
paket add Sidub.Platform.Storage.Http --version 1.0.26
#r "nuget: Sidub.Platform.Storage.Http, 1.0.26"
// Install Sidub.Platform.Storage.Http as a Cake Addin #addin nuget:?package=Sidub.Platform.Storage.Http&version=1.0.26 // Install Sidub.Platform.Storage.Http as a Cake Tool #tool nuget:?package=Sidub.Platform.Storage.Http&version=1.0.26
Sidub Platform - HTTP Storage
This repository contains the HTTP storage module for the Sidub Platform. It provides connectors and handlers that allow the storage framework to interact with various HTTP storage and API endpoints.
Main Components
This library simply provides the connectors and handlers for HTTP data
services. The Sidub.Platform.Authentication.Http
library provides
authentication capabilities and credentials for this data service.
Registering an OData Service
To connect to an OData data source, register it as a metadata service using
the StorageServiceReference
and ODataStorageConnector
classes.
serviceCollection.AddSidubPlatform(serviceProvider =>
{
var metadataService = new InMemoryServiceRegistry();
var dataService = new StorageServiceReference("MyApi");
var dataServiceConnector = new ODataStorageConnector("https://my.api.com/");
metadataService.RegisterServiceReference(dataService, dataServiceConnector);
return metadataService;
});
Registering an Azure Table Service
To connect to an OData data source, register it as a metadata service using
the StorageServiceReference
and TableStorageConnector
classes.
serviceCollection.AddSidubPlatform(serviceProvider =>
{
var metadataService = new InMemoryServiceRegistry();
var dataService = new StorageServiceReference("MyApi");
var dataServiceConnector = new TableStorageConnector("https://my.api.com/");
metadataService.RegisterServiceReference(dataService, dataServiceConnector);
return metadataService;
});
Registering an Azure Blob Service
To connect to an OData data source, register it as a metadata service using
the StorageServiceReference
and BlobStorageConnector
classes.
serviceCollection.AddSidubPlatform(serviceProvider =>
{
var metadataService = new InMemoryServiceRegistry();
var dataService = new StorageServiceReference("MyApi");
var dataServiceConnector = new BlobStorageConnector("https://my.api.com/");
metadataService.RegisterServiceReference(dataService, dataServiceConnector);
return metadataService;
});
Registering an Azure Queue Service
To connect to an OData data source, register it as a metadata service using
the StorageServiceReference
and QueueStorageConnector
classes.
serviceCollection.AddSidubPlatform(serviceProvider =>
{
var metadataService = new InMemoryServiceRegistry();
var dataService = new StorageServiceReference("MyApi");
var dataServiceConnector = new QueueStorageConnector("https://my.api.com/");
metadataService.RegisterServiceReference(dataService, dataServiceConnector);
return metadataService;
});
To interact with the HTTP data service, use any of the functionality defined within the storage framework, simply passing the storage service reference associated with the Gremlin connector.
License
This project is dual-licensed under the AGPL v3 or a proprietary license. For details, see https://sidub.ca/licensing or the LICENSE.txt file.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Flurl (>= 4.0.0)
- Flurl.Http (>= 4.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.SourceLink.AzureRepos.Git (>= 8.0.0)
- Sidub.Platform.Authentication (>= 1.0.17)
- Sidub.Platform.Filter (>= 1.1.10)
- Sidub.Platform.Storage (>= 1.0.19)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Sidub.Platform.Storage.Http:
Package | Downloads |
---|---|
Sidub.Platform.Cryptography.AzureKeyVault
Cryptography provider library for Azure Key Vault. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.26 | 133 | 9/20/2024 |