Partager via


Méthode Iasphelp ::get_SNMPSupported

La propriété SNMPSupported permet à une page Web ASP de déterminer si SNMP est utilisé avec une imprimante.

Syntaxe

HRESULT get_SNMPSupported(
  [out] BOOL *pVal
);

Paramètres

pVal [out]
Pointeur fourni par l’appelant vers un emplacement pour recevoir TRUE si SNMP est utilisé avec l’imprimante, ou FALSE si ce n’est pas le cas.

Valeur retournée

Les codes d’erreur Win32 peuvent également être retournés.

Code de retour Description
S_OK L’opération a réussi.
E_HANDLE La méthode Iasphelp ::Open n’a pas été appelée.
E_OUTOFMEMORY Mémoire insuffisante.

Exemple VBScript

La méthode Iasphelp ::Open doit être appelée pour que la propriété Iasphelp ::SNMPSupported puisse être interrogée.

Dim objPrinter, UsingSNMP
strPrinter = Session("MS_printer")
Set objPrinter = Server.CreateObject ("OlePrn.AspHelp")
objPrinter.Open strPrinter
UsingSNMP = objPrinter.SNMPSupported

Configuration requise

Plateforme cible : Bureau

Voir aussi

Iasphelp ::Open