This topic has not yet been rated - Rate this topic

CloudTableClient.SetServiceProperties Method

Sets the properties of a storage account’s Table service, including Windows Azure Storage Analytics.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage
Dim instance As CloudTableClient
Dim properties As ServiceProperties

instance.SetServiceProperties(properties)
'Declaration
Public Sub SetServiceProperties ( _
	properties As ServiceProperties _
)
public void SetServiceProperties (
	ServiceProperties properties
)
public function SetServiceProperties (
	properties : ServiceProperties
)

Parameters

properties

The Table service settings to set.

The following snippet enables all logging and metrics for table activities in the storage account with a 7 day retention period.

CloudTableClient client = storageAccount.CreateCloudTableClient();
 
ServiceProperties sp = new ServiceProperties() ;
sp.Logging.Version = "1.0";
sp.Logging.RetentionDays = 7;
sp.Logging.LoggingOperations = LoggingOperations.All;
sp.Metrics.Version = "1.0";
sp.Metrics.MetricsLevel = MetricsLevel.ServiceAndApi ;
client.SetServiceProperties(sp);

The properties parameter specifies the logging and metrics settings for the account’s Table service.

The local storage service currently does not support this method.


Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.
facebook page visit twitter rss feed newsletter