Repository.QueryShelvesets Method
Lists the known shelvesets in the system. Returns shelveset metadata.
To retrieve the list of changes, use QueryPendingSets().
Namespace: Microsoft.TeamFoundation.VersionControl.Server
Assembly: Microsoft.TeamFoundation.VersionControl.Server (in Microsoft.TeamFoundation.VersionControl.Server.dll)
Syntax
'Declaration
<WebMethodAttribute> _
Public Function QueryShelvesets ( _
shelvesetName As String, _
ownerName As String _
) As List(Of Shelveset)
[WebMethodAttribute]
public List<Shelveset> QueryShelvesets(
string shelvesetName,
string ownerName
)
[WebMethodAttribute]
public:
List<Shelveset^>^ QueryShelvesets(
String^ shelvesetName,
String^ ownerName
)
[<WebMethodAttribute>]
member QueryShelvesets :
shelvesetName:string *
ownerName:string -> List<Shelveset>
public function QueryShelvesets(
shelvesetName : String,
ownerName : String
) : List<Shelveset>
Parameters
shelvesetName
Type: System.StringName of shelveset or null to find any.
ownerName
Type: System.StringShelveset owner or null to find any.
Return Value
Type: System.Collections.Generic.List<Shelveset>
Shelveset metadata.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.