You can create an interface to accept your user login info and to create a new crdential with this:
NetworkCredential credentials = new NetworkCredential("username", "password");
And use this credential to access your secured resource.
You can create an interface to accept your user login info and to create a new crdential with this:
NetworkCredential credentials = new NetworkCredential("username", "password");
And use this credential to access your secured resource.