MetadataBuilder.AddMethodImport Method

Definition

Adds import information to a method definition.

public:
 void AddMethodImport(System::Reflection::Metadata::MethodDefinitionHandle method, System::Reflection::MethodImportAttributes attributes, System::Reflection::Metadata::StringHandle name, System::Reflection::Metadata::ModuleReferenceHandle module);
public void AddMethodImport (System.Reflection.Metadata.MethodDefinitionHandle method, System.Reflection.MethodImportAttributes attributes, System.Reflection.Metadata.StringHandle name, System.Reflection.Metadata.ModuleReferenceHandle module);
member this.AddMethodImport : System.Reflection.Metadata.MethodDefinitionHandle * System.Reflection.MethodImportAttributes * System.Reflection.Metadata.StringHandle * System.Reflection.Metadata.ModuleReferenceHandle -> unit
Public Sub AddMethodImport (method As MethodDefinitionHandle, attributes As MethodImportAttributes, name As StringHandle, module As ModuleReferenceHandle)

Parameters

method
MethodDefinitionHandle

The method definition handle.

attributes
MethodImportAttributes

The method import attributes.

name
StringHandle

The unmanaged method name.

module
ModuleReferenceHandle

The module containing the unmanaged method.

Remarks

Method imports must be added in the same order as the corresponding method definitions.

Applies to