CodeDelegate2.RemoveParameter(Object) Method

Definition

Removes a parameter from the delegate's argument list.

public:
 void RemoveParameter(System::Object ^ Element);
public:
 void RemoveParameter(Platform::Object ^ Element);
void RemoveParameter(winrt::Windows::Foundation::IInspectable const & Element);
[System.Runtime.InteropServices.DispId(66)]
public void RemoveParameter (object Element);
[<System.Runtime.InteropServices.DispId(66)>]
abstract member RemoveParameter : obj -> unit
Public Sub RemoveParameter (Element As Object)

Parameters

Element
Object

Required. A CodeElement object or the name of one in the collection.

Implements

Attributes

Remarks

Element can either be a CodeElement object that is in the collection or the name of a parameter that is unique within the collection.

Individual elements do not have a RemoveParameter method because they can exist in multiple collections. To remove a specific element, you must call the Remove method of its container object.

Note

The values of code model elements such as classes, structs, functions, attributes, delegates, and so forth can be non-deterministic after making certain kinds of edits, meaning that their values cannot be relied upon to always remain the same. For more information, see the section Code Model Element Values Can Change in Discovering Code by Using the Code Model (Visual Basic).

Applies to