1 instantiation of FormsAuthenticationUser
System.Web (1)
Configuration\FormsAuthenticationUserCollection.cs (1)
137
return new
FormsAuthenticationUser
();
13 references to FormsAuthenticationUser
System.Web (13)
Configuration\FormsAuthenticationUserCollection.cs (12)
92
[ConfigurationCollection(typeof(
FormsAuthenticationUser
), AddItemName = "user",
111
public new
FormsAuthenticationUser
this[string name] {
113
return (
FormsAuthenticationUser
)BaseGet(name);
126
public
FormsAuthenticationUser
this[int index] {
128
return (
FormsAuthenticationUser
)BaseGet(index);
141
return ((
FormsAuthenticationUser
)element).Name;
163
public void Add(
FormsAuthenticationUser
user) {
171
public
FormsAuthenticationUser
Get(int index) {
172
return (
FormsAuthenticationUser
)BaseGet(index);
175
public
FormsAuthenticationUser
Get(string name) {
176
return (
FormsAuthenticationUser
)BaseGet(name);
191
public void Set(
FormsAuthenticationUser
user) {
Security\FormsAuthentication.cs (1)
339
FormsAuthenticationUser
u = Users[name.ToLower(CultureInfo.InvariantCulture)];