SPWeb.GetObject method
Retrieves a file, folder, or list item that is associated with the specified URL.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Function GetObject ( _
strUrl As String _
) As Object
'Usage
Dim instance As SPWeb
Dim strUrl As String
Dim returnValue As Object
returnValue = instance.GetObject(strUrl)
public Object GetObject(
string strUrl
)
Parameters
strUrl
Type: System.StringThe URL of the object to retrieve.
Return value
Type: System.Object
The file, folder, or list item that is associated with the specified URL.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | strUrl is null . |
Remarks
If the strUrl parameter is an empty string, this method returns the root folder of the website.