Go to file
Wayne Foley 2675cd745b Fix for bug #1331802.
Updated the HttpAbstractionClient code to check for a null content buffer when trying to send a POST or PUT request.
Added a unit test case to check for this bug.

Closes-Bug: #1331802
Change-Id: I99d93e77a0a5ca4c3678c825517050ab4e3f6789
2014-06-30 13:57:20 -07:00
2014-06-30 13:57:20 -07:00
2014-03-01 01:24:17 +00:00
2014-06-02 09:01:33 -07:00

OpenStack SDK for .NET

The OpenStack SDK for .NET is an SDK, written for the Microsoft .NET platform, providing developers with what they need to write software against OpenStack, the open source cloud platform.

Quick Start Example

The following code will connect to Openstack, and print out all of the containers in the default storage account:

using System;
using System.Threading;
using Openstack;
using Openstack.Identity;
using Openstack.Storage;

var authUri = new Uri("https://region.identity.host.com:12345/v2.0");
var userName = "user name";
var password = "password";
var tenantId = "XXXXXXXXXXXXXX-Project";

var credential = new OpenStackCredential(authUri, userName, password, tenantId);
var client = OpenStackClientFactory.CreateClient(credential);

await client.Connect();

var storageServiceClient = client.CreateServiceClient<IStorageServiceClient>();
var storageAccount = await storageServiceClient.GetStorageAccount();
foreach(var container in storageAccount.Containers)
{
    Console.WriteLine(container.Name);
}

For more examples see the OpenStack/Examples directory.

Development

The homepage for the development effort is on the OpenStack Wiki. The .NET SDK is developed through the same processes as the OpenStack services. Features requests and bugs are filed through launchpad.

Description
RETIRED, OpenStack SDK for .Net
Readme 561 KiB