Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: Private Sub CreateTiffFile() Try 'Create NetworkCredentials object and set properties Dim creds As New NetworkCredential creds.UserName = "userid" creds.Domain = "domain" creds.Password = "password" 'Create WebClient object, set creds Dim wc As New System.Net.WebClient() wc.Credentials = creds 'Set the URL to navigate to based on the current URL and RequestID […]
↧