| 
            
              ISecurityServiceChangePassword Method
             | 
          
        
        
            Changes user password.
            
        
        Namespace: GSF.Web.EmbeddedAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
Syntax[WebGetAttribute(UriTemplate = "/changepassword?oldpassword={oldPassword}&newpassword={newPassword}")]
[OperationContractAttribute]
bool ChangePassword(
	string oldPassword,
	string newPassword
)<WebGetAttribute(UriTemplate := "/changepassword?oldpassword={oldPassword}&newpassword={newPassword}")>
<OperationContractAttribute>
Function ChangePassword ( 
	oldPassword As String,
	newPassword As String
) As Boolean[WebGetAttribute(UriTemplate = L"/changepassword?oldpassword={oldPassword}&newpassword={newPassword}")]
[OperationContractAttribute]
bool ChangePassword(
	String^ oldPassword, 
	String^ newPassword
)[<WebGetAttribute(UriTemplate = "/changepassword?oldpassword={oldPassword}&newpassword={newPassword}")>]
[<OperationContractAttribute>]
abstract ChangePassword : 
        oldPassword : string * 
        newPassword : string -> bool function ChangePassword(oldPassword, newPassword);
 View SourceParameters
- oldPassword  String
 - User's current password.
 - newPassword  String
 - User's new password.
 
Return Value
Booleantrue if the password is changed, otherwise false.
See Also