EditContext.IsModified 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
IsModified() |
Determines whether any of the fields in this EditContext have been modified. |
IsModified(FieldIdentifier) |
Determines whether the specified fields in this EditContext has been modified. |
IsModified(Expression<Func<Object>>) |
Determines whether the specified fields in this EditContext has been modified. |
IsModified()
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
Determines whether any of the fields in this EditContext have been modified.
public:
bool IsModified();
public bool IsModified ();
member this.IsModified : unit -> bool
Public Function IsModified () As Boolean
Returns
True if any of the fields in this EditContext have been modified; otherwise false.
Applies to
IsModified(FieldIdentifier)
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
Determines whether the specified fields in this EditContext has been modified.
public:
bool IsModified(Microsoft::AspNetCore::Components::Forms::FieldIdentifier % fieldIdentifier);
public bool IsModified (in Microsoft.AspNetCore.Components.Forms.FieldIdentifier fieldIdentifier);
member this.IsModified : FieldIdentifier -> bool
Public Function IsModified (ByRef fieldIdentifier As FieldIdentifier) As Boolean
Parameters
- fieldIdentifier
- FieldIdentifier
Returns
True if the field has been modified; otherwise false.
Applies to
IsModified(Expression<Func<Object>>)
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
- Source:
- EditContext.cs
Determines whether the specified fields in this EditContext has been modified.
public:
bool IsModified(System::Linq::Expressions::Expression<Func<System::Object ^> ^> ^ accessor);
public bool IsModified (System.Linq.Expressions.Expression<Func<object>> accessor);
member this.IsModified : System.Linq.Expressions.Expression<Func<obj>> -> bool
Public Function IsModified (accessor As Expression(Of Func(Of Object))) As Boolean
Parameters
- accessor
- Expression<Func<Object>>
Identifies the field whose current validation messages should be returned.
Returns
True if the field has been modified; otherwise false.