Shelving enables you to take a batch of pending changes and set it aside as a named shelveset. The changes in a shelveset can be restored later into your workspace or into another user's workspace. This function enables you to query for shelvesets.
Public Function QueryShelvesets ( _ shelvesetName As String, _ shelvesetOwner As String _ ) As Shelveset()
Dim instance As VersionControlServer Dim shelvesetName As String Dim shelvesetOwner As String Dim returnValue As Shelveset() returnValue = instance.QueryShelvesets(shelvesetName, _ shelvesetOwner)
public Shelveset[] QueryShelvesets( string shelvesetName, string shelvesetOwner )
public: array<Shelveset^>^ QueryShelvesets( String^ shelvesetName, String^ shelvesetOwner )
public function QueryShelvesets( shelvesetName : String, shelvesetOwner : String ) : Shelveset[]