SPPersistedObjectCollection<T>.GetValue<U> method (Guid)
Retrieves an object from the collection with the specified ID and type.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Function GetValue(Of U As SPPersistedObject) ( _
id As Guid _
) As U
'Usage
Dim instance As SPPersistedObjectCollection
Dim id As Guid
Dim returnValue As U
returnValue = instance.GetValue(id)
public U GetValue<U>(
Guid id
)
where U : SPPersistedObject
Type parameters
- U
The type of the object to retrieve.
Parameters
id
Type: System.GuidA System.Guid object that identifies the object in the collection.
Return value
Type: U
The object, if it exists; otherwise, a null reference (Nothing in Visual Basic).
See also
Reference
SPPersistedObjectCollection<T> class