Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Fornisce un'interfaccia per i controlli di autenticazione.
Sintassi
interface IFtpAuthenticationProvider : IUknown
Metodi
Nella tabella seguente sono elencati i metodi esposti dall'interfaccia IFtpAuthenticationProvider .
| Nome | Definizione |
|---|---|
| Metodo IFtpAuthenticationProvider::AuthenticationUser | Verifica se un nome utente e una password sono validi. |
Esempio
Nell'esempio di codice seguente viene illustrato come usare l'interfaccia IFtpAuthenticationProvider per creare un modulo di autenticazione personalizzato che implementa i controlli dei nomi utente per il servizio FTP.
public:
STDMETHOD(AuthenticateUser)(LPWSTR pszSessionId,
LPWSTR pszSiteName,
LPWSTR pszUserName,
LPWSTR pszPassword,
LPWSTR * ppszCanonicalUserName,
long * pfAuthenticated)
{
// Note: You would add your own custom logic here.
*ppszCanonicalUserName = pszUserName;
CString strUserName = L"MyUser";
CString strPassword = L"MyPassword";
// Verify that the user name and password are valid.
// In this example, the user name is case-insensitive
// and the password is case-sensitive.
if ((strUserName.CompareNoCase(pszUserName)==0) &&
(strPassword.Compare(pszPassword)==0))
{
*pfAuthenticated = TRUE;
}
else
{
*pfAuthenticated = FALSE;
}
return S_OK;
}
Requisiti
| Tipo | Descrizione |
|---|---|
| Client | - IIS 7.5 in Windows 7 - IIS 8.0 in Windows 8 - IIS 10.0 in Windows 10 |
| Server | - IIS 7.5 in Windows Server 2008 R2 - IIS 8.0 in Windows Server 2012 - IIS 8.5 in Windows Server 2012 R2 - IIS 10.0 in Windows Server 2016 |
| Prodotto | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
| Riferimento | ftpext.tlb |