IVsCredentialStorageService.RetrieveAll(String) Method

Definition

Retrieve ALL specified credential for a given feature name. If no credentials exist an empty enumeration is returned. Each credential is a snapshot of what is in the credential store The methods on the IVsCredential itself are used to access the live data.

public:
 System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Shell::Connected::CredentialStorage::IVsCredential ^> ^ RetrieveAll(System::String ^ featureName);
public System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Shell.Connected.CredentialStorage.IVsCredential> RetrieveAll (string featureName);
abstract member RetrieveAll : string -> seq<Microsoft.VisualStudio.Shell.Connected.CredentialStorage.IVsCredential>
Public Function RetrieveAll (featureName As String) As IEnumerable(Of IVsCredential)

Parameters

featureName
String

Required, cannot be null, empty or whitespace.

Returns

An enumeration of IVsCredential objects. If no credentials exist, an empty enumeration is returned.

Applies to