-
Notifications
You must be signed in to change notification settings - Fork 0
HarkLib.Net.WebFile
Adrien Castex edited this page May 30, 2016
·
2 revisions
- Namespace : HarkLib.Net
- File : HarkLib.Net.dll
Class for web files.
public class WebFile : IWebResource
Scope | Method |
---|---|
public | WebFile(string url, string name = null) |
Scope | Get | Set | Type | Name |
---|---|---|---|---|
public | ✔️ | string |
Url |
|
public | ✔️ | string |
Name |
|
public | ✔️ | string |
Host |
|
public | ✔️ | string |
Content |
Scope | Method |
---|---|
public | void ClearCache() |
WebDirectory wd = new WebDirectory("...url...");
Console.WriteLine("Directories : ");
foreach(IWebResource w in wd.Directories)
Console.WriteLine(w.Name + " :: " + w.Url);
Console.WriteLine("Files : ");
foreach(IWebResource w in wd.Files)
Console.WriteLine(w.Name + " :: " + w.Url);
Console.WriteLine("Directories & Files : ");
foreach(IWebResource w in wd.Resources)
Console.WriteLine(w.Name + " :: " + w.Url);
Documentation
- HarkLib.Parsers.Generic.dll
- HarkLib.Parsers.dll
- HarkLib.Security.dll
- HarkLib.Core.dll
- HarkLib.Net.dll
Classes
- HarkLib.Parsers.Generic
- HarkLib.Parsers
- HarkLib.Security
- HarkLib.Core
- HarkLib.Net