Search notes:

System.Management.Automation.FunctionInfo (class)

A System.Management.Automation.FunctionInfo object provides information about a PowerShell function
FunctionInfo derives from System.Management.Automation.CommandInfo.
In Windows/PowerShell, an instance of a System.Management.Automation.FunctionInfo is returned by the get-command cmdLet when applied on a function:
PS C:\> (get-command mkdir).GetType().FullName
Alternatively, such a class can also be obtained with get-item function:functionName:
PS C:\> function f() {}
PS C:\> $info = get-item function:f
PS C:\> $info.GetType().FullName
System.Management.Automation.FunctionInfo

CmdletBinding property

The bool property CmdletBinding reveals if a function was defined with the .NET class System.Management.Automation.CmdletBindingAttribute.
function normal-function {
  param()
   42
}

function advanced-function {
 [CmdLetBinding()]
  param()

 'Hello World'
}

(get-command   normal-function).CmdletBinding
#
# False

(get-command advanced-function).CmdletBinding
#
# True
Github repository .NET-API, path: /System/Management/Automation/FunctionInfo/CmdletBinding.ps1

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Microsof...', 1758207330, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Microsoft/dot-net/namespaces-classes/System/Management/Automation/FunctionInfo(73): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78