The method `CreateIfNotExistsAsync` is a part of the `CloudTable` class in the `Microsoft.WindowsAzure.Storage.Table` namespace of C#. This method is used to create a new table in Microsoft Azure Table storage if it does not already exist. It is an asynchronous method, which means it does not block the execution of the program while waiting for the creation to complete. This method returns a boolean value indicating whether the table was created. If the table already exists, the method will return false.
C# (CSharp) Microsoft.WindowsAzure.Storage.Table CloudTable.CreateIfNotExistsAsync - 15 examples found. These are the top rated real world C# (CSharp) examples of Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExistsAsync extracted from open source projects. You can rate examples to help us improve the quality of examples.