Methods Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Represents a collection of method signatures obtained from a parsing operation in a language service.
public ref class Methods abstract
[Windows::Foundation::Metadata::WebHostHidden]
public ref class Methods abstract
[Windows::Foundation::Metadata::WebHostHidden]
class Methods abstract
[System.CLSCompliant(false)]
public abstract class Methods
public abstract class Methods
[<System.CLSCompliant(false)>]
type Methods = class
type Methods = class
Public MustInherit Class Methods
- Inheritance
-
Methods
- Attributes
Remarks
This abstract class is used primarily to support the IntelliSense method tip operation. The collection typically holds a single method and all of its overloaded signatures, the parameters and return type for each version.
This class also specifies the characters used to format a method signature for display. These include the parameter list's start and end characters, the character that separates parameters, and information about whether the type information precedes or follows each parameter and the method name itself. For example, in Visual C#, the parameter start and end characters are the open and close parentheses, respectively, the parameter separator is a comma, and the types appear before the method names.
Notes to Implementers
If you are going to support the IntelliSense method tip operation, you must provide a class derived from Methods. In order to instantiate this class you must derive a class from the AuthoringScope class and call the constructor of your derived class in your implementation of the GetMethods(Int32, Int32, String) method.
Notes to Callers
The Methods class is used in the MethodData class to handle the method tip operation.
Constructors
Methods() |
When implemented in a derived class, initializes a new instance of the Methods class. |
Properties
CloseBracket |
Gets the character to use at the end of a method parameter list. |
DefaultMethod |
Returns the method that should be selected first (based on what was found at parse time at the ParseRequest source location). |
Delimiter |
Gets the character that separates parameters in a method's parameter list. |
OpenBracket |
Gets the character to use at the start of a method's parameter list. |
TypePostfix |
Gets the string to place after the return type of a method. |
TypePrefix |
Gets the string to place before the return type of a method. |
TypePrefixed |
Gets whether a method's return type comes before or after the method signature. |
Methods
GetCount() |
When implemented in a derived class, gets the number of overloaded method signatures represented in this collection. |
GetDescription(Int32) |
When implemented in a derived class, gets the description of the specified method signature. |
GetName(Int32) |
When implemented in a derived class, gets the name of the specified method signature. |
GetParameterCount(Int32) |
When implemented in a derived class, gets the number of parameters on the specified method signature. |
GetParameterInfo(Int32, Int32, String, String, String) |
When implemented in a derived class, gets information about the specified parameter on the specified method signature. |
GetType(Int32) |
When implemented in a derived class, gets the return type of the specified method signature. |