C# Класс Microsoft.R.Support.Help.Functions.SignatureInfo

Наследование: ISignatureInfo
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetArgumentIndex ( string argumentName, bool partialMatch ) : int

Given argument name returns index of the argument in the signature. Performs full and then partial matching fof the argument name.

GetSignatureString ( string actualName, List locusPoints = null ) : string

Creates formatted signature that is presented to the user during function parameter completion. Optionally provides locus points (locations withing the string) for each function parameter.

SignatureInfo ( string functionName ) : System

Описание методов

GetArgumentIndex() публичный Метод

Given argument name returns index of the argument in the signature. Performs full and then partial matching fof the argument name.
public GetArgumentIndex ( string argumentName, bool partialMatch ) : int
argumentName string Name of the argument
partialMatch bool /// If true, partial match will be performed /// if exact match is not found ///
Результат int

GetSignatureString() публичный Метод

Creates formatted signature that is presented to the user during function parameter completion. Optionally provides locus points (locations withing the string) for each function parameter.
public GetSignatureString ( string actualName, List locusPoints = null ) : string
actualName string
locusPoints List
Результат string

SignatureInfo() публичный Метод

public SignatureInfo ( string functionName ) : System
functionName string
Результат System