Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
1.29/5 (3 votes)
See more:
VB
Public ReadOnly Property User_Password_Hint() As String
       Get
           Return myUser_Password_Hint
       End Get
   End Property



Please Anyone Help Me To Resolve This Privacy Violation.
Posted
Updated 29-Sep-15 2:54am
v2
Comments
CHill60 29-Sep-15 9:00am    
We'll need a bit more information that this
Suvendu Shekhar Giri 29-Sep-15 9:05am    
More details required.

1 solution

It's complaining because you are storing something related to passwords in a string in your object. Change your get method to return the hint direct from where it is stored rather than storing it in a private variable via a constrictor (I'm guessing).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900