Condividi tramite


Funzione PeerDistShutdown (peerdist.h)

La funzione PeerDistShutdown rilascia le risorse allocate da una chiamata a PeerDistStartup. Ogni handle restituito da una chiamata PeerDistStartup deve essere chiuso da una chiamata corrispondente a PeerDistShutdown

Sintassi

DWORD PeerDistShutdown(
  [in] PEERDIST_INSTANCE_HANDLE hPeerDist
);

Parametri

[in] hPeerDist

Un PEERDIST_INSTANCE_HANDLE restituito da PeerDistStartup.

Valore restituito

Se la funzione ha esito positivo, il valore restituito viene ERROR_SUCCESS. In caso contrario, la funzione può restituire uno dei valori seguenti:

Codice restituito Descrizione
ERROR_INVALID_HANDLE
L'handle hPeerDist non è valido.

Commenti

Questa funzione rimuoverà tutte le pubblicazioni create con l'handle hPeerDist specificato. È consigliabile chiamare questa funzione dopo il completamento di tutte le operazioni in sospeso, perché PeerDistShutdown annulla tutte le operazioni server e client di distribuzione peer in sospeso associate al PEERDIST_INSTANCE_HANDLE fornito.

Requisiti

Requisito Valore
Client minimo supportato Windows 7 Professional [solo app desktop]
Server minimo supportato Windows Server 2008 R2 [solo app desktop]
Piattaforma di destinazione Windows
Intestazione peerdist.h
Libreria PeerDist.lib
DLL PeerDist.dll

Vedi anche

PeerDistStartup