I've been given a c# project to look after while the guy is on honeymoon for a month so I can't ask him this :-(. In the project in the App_Code folder is a file called helper.cs. In it are lines like this
MembershipUser user = Membership.GetUser(Username)
When I go to definition on Membership (or MembershipUser)
it takes me to a file called "Membership [from metadata]"
I think I've got the gist of what metadata is, but how is the contents of the metadata file created? For example GetUser has a number of alternatives
Say I want to add another one,
where/how would I do this? With what would I have to interact?
Thanks
MembershipUser user = Membership.GetUser(Username)
When I go to definition on Membership (or MembershipUser)
it takes me to a file called "Membership [from metadata]"
I think I've got the gist of what metadata is, but how is the contents of the metadata file created? For example GetUser has a number of alternatives
Code:
public static MembershipUser GetUser();
public static MembershipUser GetUser(bool userIsOnline);
public static MembershipUser GetUser(string username);
Code:
public static MembershipUser GetUser(string username, string password);
Thanks