The C# .NET SDK currently only supports legacy versions of Nitric prior to v1. This version is maintained for compatibility with existing projects and not recommended for new projects. New projects should be started using a supported SDK (presented automatically using the `nitric new` command) orget in touch to request an update to the latest version.
.NET - Bucket.File.Write()
Write a file to a bucket.
using Nitric.Sdk;
using Nitric.Sdk.Storage;
var assets = Nitric.Bucket('assets').With(BucketPermission.Reading);
var logo = assets.File('images/logo.png');
logo.Write(someImageData);
Nitric.Run();
Parameters
- Name
data
- Required
- Required
- Type
- byte[]
- Description
The data to write to the file.
Examples
Write a file
using Nitric.Sdk;
using Nitric.Sdk.Storage;
var assets = Nitric.Bucket('assets').With(BucketPermission.Reading);
var logo = assets.File('images/logo.png');
logo.Write(someImageData);
Nitric.Run();