Expression.FunctionTable.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.