Changes the user password.
            
            
            
            
            
            
            
            public bool ChangePassword( 
   string ,
   string ,
   string ,
   string 
)
             
        
            
            'Declaration
 
Public Function ChangePassword( _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As String _
) As Boolean
             
        
            
            'Usage
 
Dim instance As DicomWCFStreamer
Dim username As String
Dim oldpassword As String
Dim newpassword As String
Dim extraData As String
Dim value As Boolean
 
value = instance.ChangePassword(username, oldpassword, newpassword, extraData)
             
        
            
        
            
        
            
            public:
bool ChangePassword( 
   String^ ,
   String^ ,
   String^ ,
   String^ 
) 
             
        
             
        
            Parameters
- username
- The user name which password want to be changed.
- oldpassword
- The old password of the user.
- newpassword
- The new user password.
- extraData
- User custom data.
Return Value
true if the user password changed successfully; otherwise false.