1 override of Comment
System.Web (1)
Security\ADMembershipUser.cs (1)
70public override string Comment
2 writes to Comment
System.Web (1)
Security\ADMembershipUser.cs (1)
78base.Comment = value;
System.Web.ApplicationServices (1)
Security\MembershipUser.cs (1)
362Comment = mu.Comment;
8 references to Comment
System.Web (7)
Security\ADMembershipProvider.cs (5)
1627if (commentModified && user.Comment != null) 1629if (user.Comment.Length == 0) 1632if (maxCommentLength > 0 && user.Comment.Length > maxCommentLength) 1683if (user.Comment == null) 1694userEntry.Properties["comment"].Value = user.Comment;
Security\ADMembershipUser.cs (1)
74return base.Comment;
Security\SQLMembershipProvider.cs (1)
828cmd.Parameters.Add(CreateInputParam("@Comment", SqlDbType.NText, user.Comment));
System.Web.ApplicationServices (1)
Security\MembershipUser.cs (1)
362Comment = mu.Comment;