Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Describes the mechanisms for ResultCollections. ResultCollections are enumerable and disposable.
Namespace: Microsoft.TeamFoundation.Client
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Interface IResultCollection(Of T) _
Inherits IEnumerable(Of T), IEnumerable, IDisposable
public interface IResultCollection<T> : IEnumerable<T>,
IEnumerable, IDisposable
generic<typename T>
public interface class IResultCollection : IEnumerable<T>,
IEnumerable, IDisposable
type IResultCollection<'T> =
interface
interface IEnumerable<'T>
interface IEnumerable
interface IDisposable
end
JScript does not support generic types or methods.
Type Parameters
- T
The IResultCollection<T> type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) |
![]() |
GetEnumerator() | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<T>.) |
![]() |
GetEnumerator() | Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.) |
Top