SPContext.Current-Eigenschaft
Ruft den Kontext der aktuellen HTTP-Anforderung in Microsoft SharePoint Foundation.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared ReadOnly Property Current As SPContext
Get
'Usage
Dim value As SPContext
value = SPContext.Current
public static SPContext Current { get; }
Eigenschaftswert
Typ: Microsoft.SharePoint.SPContext
Der SharePoint Foundation -Kontext.
Hinweise
Die Current -Eigenschaft enthält Eigenschaften, die z. b. verschiedene Objekte innerhalb des aktuellen SharePoint Foundation zugreifen, die aktuelle Liste, Website, Websitesammlung oder Webanwendung.
Beispiele
Im folgende Beispiel verwendet die Current -Eigenschaft auf die Auflistung von Websitesammlungen in der aktuellen Web-Anwendung zugreifen.
Dim myApp As SPWebApplication = SPContext.Current.Site.WebApplication
Dim sites As SPSiteCollection = myApp.Sites
Dim site As SPSite
For Each site In sites
Response.Write((site.Url + "<BR>"))
Next site
SPWebApplication oWebApplicationCurrent = SPContext.Current.Site.WebApplication;
SPSiteCollection collSites = oWebApplicationCurrent.Sites;
foreach (SPSite oSite in collSites)
{
Response.Write(oSite.Url + "<BR>");
oSite.Dispose();
}