Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

NPN_UserAgent

This article needs a technical review. How you can help.

« Gecko Plugin API Reference « Browser Side Plug-in API

Summary

Returns the browser's user agent field. This can be used to handle variations in different browsers (or versions thereof) when implementing your plug-in.

Syntax

#include <npapi.h>
 
const char* NPN_UserAgent(NPP instance);

Parameters

The function has the following parameter:

instance
Pointer to the current plug-in instance.

Returns

A pointer to a buffer that contains the user agent field of the browser.

Description

The user agent is the part of the HTTP header that identifies the browser during transfers. You can use this information to verify that the expected browser is in use, or you can use it in combination with NPN_Version() to supply different code for different versions of the same browser.

See also

Document Tags and Contributors

 Contributors to this page: teoli, kscarfone, Sheppy, Pmash
 Last updated by: kscarfone,