/**
  * GetProperty() gets a response property.
  *
  * @param[in] request A <code>PP_Resource</code> corresponding to a
  * <code>URLResponseInfo</code>.
  * @param[in] property A <code>PP_URLResponseProperty</code> identifying
  * the type of property in the response.
  *
  * @return A <code>PP_Var</code> containing the response property value if
  * successful, <code>PP_VARTYPE_VOID</code> if an input parameter is invalid.
  */
 public static PPVar GetProperty(PPResource response,
                                 PPURLResponseProperty property)
 {
     return(_GetProperty(response, property));
 }
 extern static PPVar _GetProperty(PPResource response,
                                  PPURLResponseProperty property);