本文整理汇总了C#中System.Net.NetworkCredential.ToCharArray方法的典型用法代码示例。如果您正苦于以下问题:C# NetworkCredential.ToCharArray方法的具体用法?C# NetworkCredential.ToCharArray怎么用?C# NetworkCredential.ToCharArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.NetworkCredential
的用法示例。
在下文中一共展示了NetworkCredential.ToCharArray方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConnectToSite
private static void ConnectToSite()
{
Console.WriteLine("Please enter the URL to the SharePoint Site");
url = Console.ReadLine();
Console.WriteLine("Please enter the username");
username = Console.ReadLine();
Console.WriteLine("Please enter the password");
SecureString securepassword = getpassword();
clientContext = new ClientContext(url);
password = new SecureString();
string charpassword = new NetworkCredential(string.Empty, securepassword).Password;
foreach (char c in charpassword.ToCharArray()) password.AppendChar(c);
clientContext.Credentials = new SharePointOnlineCredentials(username, password);
site = clientContext.Site;
clientContext.Load(site);
clientContext.ExecuteQuery();
siteRelativeUrl = site.ServerRelativeUrl;
clientContext.Load(site.RootWeb);
clientContext.ExecuteQuery();
Console.WriteLine("");
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Successfully connected to site at " + site.Url);
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("Press any key to continue..");
Console.ReadLine();
}