macdoc.MyDocument.LoadHtml C# (CSharp) Méthode

LoadHtml() public méthode

public LoadHtml ( string html ) : void
html string
Résultat void
		public void LoadHtml (string html)
		{
			LoadingFromString = true;
			webView.MainFrame.LoadHtmlString (html, AppDelegate.MonodocBaseUrl);
			
#if debug_html
			using (var x = System.IO.File.CreateText (AppDelegate.MonodocDir + "/foo.html")){
				x.Write (html);
			}
#endif
			LoadingFromString = false;
		}