diff --git a/source/Src/SemanticLogging.Database/SqlDatabaseLog.cs b/source/Src/SemanticLogging.Database/SqlDatabaseLog.cs index 8418fbc..584d908 100644 --- a/source/Src/SemanticLogging.Database/SqlDatabaseLog.cs +++ b/source/Src/SemanticLogging.Database/SqlDatabaseLog.cs @@ -31,7 +31,7 @@ public static class SqlDatabaseLog /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Normally, calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. - /// The maximum number of entries that can be buffered while it's sending to Windows Azure Storage before the sink starts dropping entries. + /// The maximum number of entries that can be buffered while it's sending to SQL Database before the sink starts dropping entries. /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Normally, calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. @@ -64,7 +64,7 @@ public static SinkSubscription LogToSqlDatabase(this IObservabl /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. - /// The maximum number of entries that can be buffered while it's sending to Windows Azure Storage before the sink starts dropping entries. + /// The maximum number of entries that can be buffered while it's sending to SQL Database before the sink starts dropping entries. /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Normally, calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. diff --git a/source/Src/SemanticLogging.WindowsAzure/Sinks/CloudEventEntry.cs b/source/Src/SemanticLogging.WindowsAzure/Sinks/CloudEventEntry.cs index 14af76d..f0d2c09 100644 --- a/source/Src/SemanticLogging.WindowsAzure/Sinks/CloudEventEntry.cs +++ b/source/Src/SemanticLogging.WindowsAzure/Sinks/CloudEventEntry.cs @@ -8,7 +8,7 @@ namespace Microsoft.Practices.EnterpriseLibrary.SemanticLogging.Sinks.WindowsAzure { /// - /// Represents a log entry in a Windows Azure Table. + /// Represents a log entry in an Azure Table. /// public sealed class CloudEventEntry { diff --git a/source/Src/SemanticLogging.WindowsAzure/Sinks/WindowsAzureTableSink.cs b/source/Src/SemanticLogging.WindowsAzure/Sinks/WindowsAzureTableSink.cs index db3f192..b58fea2 100644 --- a/source/Src/SemanticLogging.WindowsAzure/Sinks/WindowsAzureTableSink.cs +++ b/source/Src/SemanticLogging.WindowsAzure/Sinks/WindowsAzureTableSink.cs @@ -19,7 +19,7 @@ namespace Microsoft.Practices.EnterpriseLibrary.SemanticLogging.Sinks { /// - /// Sink that asynchronously writes entries to a Windows Azure table. + /// Sink that asynchronously writes entries to an Azure table. /// public class WindowsAzureTableSink : IObserver, IDisposable { @@ -42,8 +42,8 @@ public class WindowsAzureTableSink : IObserver, IDisposable /// The name of the instance originating the entries. /// The connection string for the storage account. /// Either the name of the table, or the absolute URI to the table. - /// The buffering interval to wait for events to accumulate before sending them to Windows Azure Storage. - /// The maximum number of entries that can be buffered while it's sending to Windows Azure Storage before the sink starts dropping entries. + /// The buffering interval to wait for events to accumulate before sending them to Azure Storage. + /// The maximum number of entries that can be buffered while it's sending to Azure Storage before the sink starts dropping entries. /// Defines a timeout interval for when flushing the entries after an call is received and before disposing the sink. /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Normally, calling on /// the will block until all the entries are flushed or the interval elapses. @@ -142,7 +142,7 @@ public void OnError(Exception error) /// /// Provides the sink with new data to write. /// - /// The current entry to write to Windows Azure. + /// The current entry to write. public void OnNext(EventEntry value) { this.OnNext(value.TryConvertToCloudEventEntry()); diff --git a/source/Src/SemanticLogging.WindowsAzure/WindowsAzureTableLog.cs b/source/Src/SemanticLogging.WindowsAzure/WindowsAzureTableLog.cs index a50bbc6..a9c6f74 100644 --- a/source/Src/SemanticLogging.WindowsAzure/WindowsAzureTableLog.cs +++ b/source/Src/SemanticLogging.WindowsAzure/WindowsAzureTableLog.cs @@ -28,7 +28,7 @@ public static class WindowsAzureTableLog /// The buffering interval between each batch publishing. Default value is . /// The value indicating whether to sort the row keys in ascending order. /// Defines a timeout interval for when flushing the entries after an call is received and before disposing the sink. - /// The maximum number of entries that can be buffered while it's sending to Windows Azure Storage before the sink starts dropping entries. + /// The maximum number of entries that can be buffered while it's sending to Azure Storage before the sink starts dropping entries. /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Normally, calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. @@ -61,7 +61,7 @@ public static SinkSubscription LogToWindowsAzureTable(thi /// The buffering interval between each batch publishing. /// The value indicating whether to sort the row keys in ascending order. /// Defines a timeout interval for the flush operation when the listener is disposed. - /// The maximum number of entries that can be buffered while it's sending to Windows Azure Storage before the sink starts dropping entries. + /// The maximum number of entries that can be buffered while it's sending to Azure Storage before the sink starts dropping entries. /// This means that if the timeout period elapses, some event entries will be dropped and not sent to the store. Calling on /// the will block until all the entries are flushed or the interval elapses. /// If is specified, then the call will block indefinitely until the flush operation finishes. diff --git a/source/Tests/SemanticLogging.Tests/UsingEventListener/EventTableEntity.cs b/source/Tests/SemanticLogging.Tests/UsingEventListener/EventTableEntity.cs index 264b581..84186bf 100644 --- a/source/Tests/SemanticLogging.Tests/UsingEventListener/EventTableEntity.cs +++ b/source/Tests/SemanticLogging.Tests/UsingEventListener/EventTableEntity.cs @@ -10,7 +10,7 @@ namespace Microsoft.Practices.EnterpriseLibrary.SemanticLogging.Tests.EventListeners { /// - /// Represents a log entry in a Windows Azure Table. + /// Represents a log entry in an Azure Table. /// internal class TestCloudTableEntry : TableEntity {