private void IsNameValidForTableStorage(string tableName) { var validator = new AzureStorageTableNameValidator(tableName); if (!validator.IsValid()) { throw new NotSupportedException(tableName + " is not a valid name for Azure storage table name.") { HelpLink = "http://msdn.microsoft.com/en-us/library/windowsazure/dd179338.aspx" }; } }