ResolvedMethodEnterEvent.GetParameters Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets the data elements for the parameters to this method.
Namespace: Microsoft.VisualStudio.TraceLog
Assembly: Microsoft.VisualStudio.TraceLog (in Microsoft.VisualStudio.TraceLog.dll)
Syntax
'Declaration
Public Function GetParameters As IList(Of IDataElement)
'Usage
Dim instance As ResolvedMethodEnterEvent
Dim returnValue As IList(Of IDataElement)
returnValue = instance.GetParameters()
public IList<IDataElement> GetParameters()
public:
IList<IDataElement^>^ GetParameters()
member GetParameters : unit -> IList<IDataElement>
public function GetParameters() : IList<IDataElement>
Return Value
Type: System.Collections.Generic.IList<IDataElement>
A list of data elements of type IDataElement, one item for each parameter passed to the method. If a this or me object exists, it will be the first parameter in the list. The list is empty if there are no parameters.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ResolvedMethodEnterEvent Class