Exemplo n.º 1
0
 public async Task PurgeChannel(string channelName)
 {
     var tableOperations = new SqlChannelOperations(_settings.ConnectionString);
     await tableOperations.Purge(channelName);
 }
Exemplo n.º 2
0
 public async Task EnsureChannelExists(string channelName)
 {
     var tableOperations = new SqlChannelOperations(_settings.ConnectionString);
     await tableOperations.CreateIfNotExists(channelName);
 }