AuthenticationBase<T>.UpdateUserCore Method

[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.]

Updates the user data for the authenticated identity.

Namespace:  System.ServiceModel.DomainServices.Server.ApplicationServices
Assembly:  System.ServiceModel.DomainServices.Server (in System.ServiceModel.DomainServices.Server.dll)

Syntax

'Declaration
Protected Overridable Sub UpdateUserCore ( _
    user As T _
)
'Usage
Dim user As T

Me.UpdateUserCore(user)
protected virtual void UpdateUserCore(
    T user
)
protected:
virtual void UpdateUserCore(
    T user
)
abstract UpdateUserCore : 
        user:'T -> unit 
override UpdateUserCore : 
        user:'T -> unit 
protected function UpdateUserCore(
    user : T
)

Parameters

  • user
    Type: T
    The updated user.

Remarks

This method is invoked from UpdateUser after the identity of the current principal has been verified. It is responsible for persisting the updated user data. By default, this method will persist the user using ProfileBase. The base implementation does not need to be invoked when this method is overridden.

See Also

Reference

AuthenticationBase<T> Class

System.ServiceModel.DomainServices.Server.ApplicationServices Namespace