EN
Det här innehållet finns inte tillgängligt på ditt språk men här finns den engelska versionen,
Det här ämnet har inte bedömts ännu - Bedöm det här ämnet

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)
'Användning
Dim instance As CloudTableClient
Dim properties As ServiceProperties

instance.SetServiceProperties(properties)
public void SetServiceProperties (
	ServiceProperties properties
)
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

Var detta till hjälp?
(1500 tecken kvar)
© 2013 Microsoft. Med ensamrätt.
facebook page visit twitter rss feed newsletter