ClassMethod

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
name string
returnType string
parameters array
isStatic boolean
description string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-classmethod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClassMethod",
  "title": "ClassMethod",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "returnType": {
      "type": "string"
    },
    "parameters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      }
    },
    "isStatic": {
      "type": "boolean"
    },
    "description": {
      "type": "string"
    }
  }
}