-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathDataReceivedEventArgs.cs
46 lines (39 loc) · 1.27 KB
/
DataReceivedEventArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="DataReceivedEventArgs.cs" company="pzcast">
// (C) 2015 pzcast. All rights reserved.
// </copyright>
// <summary>
// The data received event args.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace SimpleCrawler
{
using System;
/// <summary>
/// The data received event handler.
/// </summary>
/// <param name="args">
/// The args.
/// </param>
public delegate void DataReceivedEventHandler(DataReceivedEventArgs args);
/// <summary>
/// The data received event args.
/// </summary>
public class DataReceivedEventArgs : EventArgs
{
#region Public Properties
/// <summary>
/// Gets or sets the depth.
/// </summary>
public int Depth { get; set; }
/// <summary>
/// Gets or sets the html.
/// </summary>
public string Html { get; set; }
/// <summary>
/// Gets or sets the url.
/// </summary>
public string Url { get; set; }
#endregion
}
}