ISymbolWriter.DefineParameter Method
.NET Framework 2.0
Defines a single parameter in the current method. The type of each parameter is taken from its position within the signature of the method.
Namespace: System.Diagnostics.SymbolStore
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration Sub DefineParameter ( _ name As String, _ attributes As ParameterAttributes, _ sequence As Integer, _ addrKind As SymAddressKind, _ addr1 As Integer, _ addr2 As Integer, _ addr3 As Integer _ ) 'Usage Dim instance As ISymbolWriter Dim name As String Dim attributes As ParameterAttributes Dim sequence As Integer Dim addrKind As SymAddressKind Dim addr1 As Integer Dim addr2 As Integer Dim addr3 As Integer instance.DefineParameter(name, attributes, sequence, addrKind, addr1, addr2, addr3)
void DefineParameter ( String name, ParameterAttributes attributes, int sequence, SymAddressKind addrKind, int addr1, int addr2, int addr3 )
function DefineParameter ( name : String, attributes : ParameterAttributes, sequence : int, addrKind : SymAddressKind, addr1 : int, addr2 : int, addr3 : int )
Not applicable.
Parameters
- name
The parameter name.
- attributes
The parameter attributes specified using the ParameterAttributes enumerator.
- sequence
The parameter signature.
- addrKind
The address types for addr1, addr2, and addr3 using SymAddressKind.
- addr1
The first address for the parameter specification.
- addr2
The second address for the parameter specification.
- addr3
The third address for the parameter specification.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: