Azure.Storage.Blobs.Models.BlobStaticWebsite
The properties that enable an account to host a static website.
namespace Azure.Storage.Blobs.Models
{
public class BlobStaticWebsite : IXmlSerializable
{
public bool Enabled { get; set; }
public string IndexDocument { get; set; }
public string ErrorDocument404Path { get; set; }
public string DefaultIndexDocumentPath { get; set; }
public BlobStaticWebsite();
}
}