RuntimeOps.ExpandoTryDeleteValue Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Note: This API is now obsolete.
Deletes the value of an item in an expando object.
Namespace: System.Runtime.CompilerServices
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
<ObsoleteAttribute("do not use this method", True)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Shared Function ExpandoTryDeleteValue ( _
expando As ExpandoObject, _
indexClass As Object, _
index As Integer, _
name As String, _
ignoreCase As Boolean _
) As Boolean
[ObsoleteAttribute("do not use this method", true)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static bool ExpandoTryDeleteValue(
ExpandoObject expando,
Object indexClass,
int index,
string name,
bool ignoreCase
)
Parameters
- expando
Type: System.Dynamic.ExpandoObject
The expando object.
- indexClass
Type: System.Object
The class of the expando object.
- index
Type: System.Int32
The index of the member.
- name
Type: System.String
The name of the member.
- ignoreCase
Type: System.Boolean
true if the name should be matched ignoring case; false otherwise.
Return Value
Type: System.Boolean
true if the item was successfully removed; otherwise, false.
Version Information
Silverlight
Obsolete (does not compile) in 4 and later
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.