Share via


de la propiedad SPSite.Usage

Gets information about site usage, including bandwidth, storage, and number of visits to the site collection.

Espacio de nombres:  Microsoft.SharePoint
Ensamblado:  Microsoft.SharePoint (en Microsoft.SharePoint.dll)

Sintaxis

'Declaración
Public ReadOnly Property Usage As SPSite.UsageInfo
    Get
'Uso
Dim instance As SPSite
Dim value As SPSite.UsageInfo

value = instance.Usage
public SPSite.UsageInfo Usage { get; }

Valor de propiedad

Tipo: Microsoft.SharePoint.SPSite.UsageInfo
An SPSite.UsageInfo structure that contains the usage information.

Ejemplos

The following code example iterates through all the site collections in a Web application and displays the URL and amount of storage used in each.

Dim uriNew As New Uri("http://MyServer")
Dim oWebApp As SPWebApplication = SPWebApplication.Lookup(uriNew)
Dim collSiteCollection As SPSiteCollection = oWebApp.Sites

For Each oSiteCollection As SPSite In collSiteCollection
    Dim oUsageInfo As SPSite.UsageInfo = oSiteCollection.Usage
    Dim lngStorageUsed As Long = oUsageInfo.Storage

    Response.Write(("Site Collection URL: " + oSiteCollection.Url + " Storage: " + lngStorageUsed.ToString() + "<BR>"))

    oSiteCollection.Dispose()
Next oSiteCollection
Uri uriNew = new Uri("http://MyServer");
SPWebApplication oWebApp = SPWebApplication.Lookup(uriNew);
SPSiteCollection collSiteCollection = oWebApp.Sites;

foreach (SPSite oSiteCollection in collSiteCollection)
{
    SPSite.UsageInfo oUsageInfo = oSiteCollection.Usage;
    long lngStorageUsed = oUsageInfo.Storage;

    Response.Write("Site Collection URL: " + oSiteCollection.Url +
        " Storage: " + lngStorageUsed.ToString() + "<BR>");

    oSiteCollection.Dispose();
}

Nota

Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects.

Vea también

Referencia

clase SPSite

Miembros SPSite

Espacio de nombres Microsoft.SharePoint