Share via


Expression.FunctionTable.Remove Method

Definition

Overloads

Remove(KeyValuePair<String,ExpressionEvaluator>)

Removes a specified key value pair from user customized functions.

Remove(String)

Removes a specified key from user customized functions.

Remove(KeyValuePair<String,ExpressionEvaluator>)

Removes a specified key value pair from user customized functions.

public bool Remove (System.Collections.Generic.KeyValuePair<string,AdaptiveExpressions.ExpressionEvaluator> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, AdaptiveExpressions.ExpressionEvaluator> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, AdaptiveExpressions.ExpressionEvaluator> -> bool
Public Function Remove (item As KeyValuePair(Of String, ExpressionEvaluator)) As Boolean

Parameters

item
KeyValuePair<String,ExpressionEvaluator>

A key value pair of string to ExpressionEvaluator.

Returns

A boolean value indicating whether the key is successfully removed.

Implements

Applies to

Remove(String)

Removes a specified key from user customized functions.

public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean

Parameters

key
String

A string key of function name.

Returns

A boolean value indicating whether the key is successfully removed.

Implements

Applies to