Checks whether a user/pass combination is present in the collection or not.
[Visual Basic]Public Function IsItemPresent( _
ByVal Username As String, _
ByVal Password As String _
) As Boolean
[C#]
public bool IsItemPresent(
string Username,
string Password
);
Parameters
- Username
- The username to search for.
- Password
- The corresponding password to search for.
Return Value
True when the user/pass combination is present in the collection, false otherwise.
See Also
AuthenticationList Class | AuthenticationList Members | Org.Mentalis.Proxy.Socks.Authentication Namespace