Initialize() public method

Initialize the appender on the Azure Container. This is a once only. When this code is run, you don't need to do it anymore. Create the container and the index file.
public Initialize ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
 public Task Initialize()
 {
     var appender = new AzureAsyncAppender(this.storage, this.container, this.options);
     return appender.Initialize();
 }
        public Task Initialize()
        {
            var appender = new AzureAsyncAppender(this.storage, this.container, this.options);

            return(appender.Initialize());
        }