Class SubmitEventArgs<TEntity>
Class SubmitEventArgs.
Implements the
Inheritance
System.Object
SubmitEventArgs<TEntity>
Namespace: ISynergy.Framework.Mvvm.Events
Assembly: ISynergy.Framework.Mvvm.dll
Syntax
public class SubmitEventArgs<TEntity> : EventArgs
Type Parameters
Name | Description |
---|---|
TEntity | The type of the t entity. |
Constructors
View SourceSubmitEventArgs(TEntity)
Initializes a new instance of the SubmitEventArgs<TEntity> class.
Declaration
public SubmitEventArgs(TEntity result)
Parameters
Type | Name | Description |
---|---|---|
TEntity | result | The result. |
SubmitEventArgs(Object, TEntity)
Initializes a new instance of the SubmitEventArgs<TEntity> class.
Declaration
public SubmitEventArgs(object owner, TEntity result)
Parameters
Type | Name | Description |
---|---|---|
System.Object | owner | The owner. |
TEntity | result | The result. |
SubmitEventArgs(Object, TEntity, String)
Initializes a new instance of the SubmitEventArgs<TEntity> class.
Declaration
public SubmitEventArgs(object owner, TEntity result, string targetProperty)
Parameters
Type | Name | Description |
---|---|---|
System.Object | owner | The owner. |
TEntity | result | The result. |
System.String | targetProperty | The target property. |
Properties
View SourceOwner
Gets the owner.
Declaration
public object Owner { get; }
Property Value
Type | Description |
---|---|
System.Object | The owner. |
Result
Gets the result.
Declaration
public TEntity Result { get; }
Property Value
Type | Description |
---|---|
TEntity | The result. |
TargetProperty
Gets the target property.
Declaration
public string TargetProperty { get; }
Property Value
Type | Description |
---|---|
System.String | The target property. |