RemoveFromDictionary(TKey, TValue) Class

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
The RemoveFromDictionary activity will remove a key value pair to a dictionary.

Namespace: Microsoft.Activities.Extensions.Statements
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public sealed class RemoveFromDictionary<TKey, TValue> : CodeActivity<bool>
Visual Basic
Public NotInheritable Class RemoveFromDictionary(Of TKey, TValue) _
	Inherits CodeActivity(Of Boolean)
Visual C++
generic<typename TKey, typename TValue>
public ref class RemoveFromDictionary sealed : public CodeActivity<bool>

Type Parameters

TKey
Type of the key
TValue
Type of the value

Inheritance Hierarchy

System..::..Object
  System.Activities..::..Activity
    System.Activities..::..ActivityWithResult
      System.Activities..::..Activity<(Of <(<'Boolean>)>)>
        System.Activities..::..CodeActivity<(Of <(<'Boolean>)>)>
          Microsoft.Activities.Extensions.Statements..::..RemoveFromDictionary<(Of <(<'TKey, TValue>)>)>

See Also