CloudTableClient.SetServiceProperties Method

Storage Client Library NET API

[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See Storage Client Library for the latest version.]

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

Visual Basic
Dim instance As CloudTableClient
Dim properties As ServiceProperties

instance.SetServiceProperties(properties)

Syntax

Visual Basic
Public Sub SetServiceProperties ( _
	properties As ServiceProperties _
)
C#
public void SetServiceProperties (
	ServiceProperties properties
)
C++
public:
void SetServiceProperties (
	ServiceProperties^ properties
)
J#
JScript

Parameters

properties

The Table service settings to set.

Example

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

 Copy Code
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);

Remarks

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.


Thread Safety

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

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Change History

See Also