ChangeSetEntry.EntityActions Property
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Gets or sets the custom methods invoked on the entity.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
<DataMemberAttribute> _
Public Property EntityActions As IDictionary(Of String, Object())
Get
Set
'Usage
Dim instance As ChangeSetEntry
Dim value As IDictionary(Of String, Object())
value = instance.EntityActions
instance.EntityActions = value
[DataMemberAttribute]
public IDictionary<string, Object[]> EntityActions { get; set; }
[DataMemberAttribute]
public:
property IDictionary<String^, array<Object^>^>^ EntityActions {
IDictionary<String^, array<Object^>^>^ get ();
void set (IDictionary<String^, array<Object^>^>^ value);
}
[<DataMemberAttribute>]
member EntityActions : IDictionary<string, Object[]> with get, set
function get EntityActions () : IDictionary<String, Object[]>
function set EntityActions (value : IDictionary<String, Object[]>)
Property Value
Type: System.Collections.Generic.IDictionary<String, array<Object[]>
The collection of custom methods invoked on the entity.
Remarks
The custom methods are stored as a collection of pair values. Each pair contains the method name and the parameter set.