-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathHtmlSource.cs
63 lines (58 loc) · 2.04 KB
/
HtmlSource.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//------------------------------------------------------------------------------
// <copyright file="HtmlSource.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.HtmlControls {
using System.ComponentModel;
using System.Web;
using System.Web.UI;
/// <devdoc>
/// <para>
/// The <see langword='HtmlSource'/>
/// class defines the methods, properties, and events
/// for the HtmlSource server control.
/// This class provides programmatic access on the server to
/// the HTML 5 <Source> element.
/// </para>
/// </devdoc>
[
ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
]
public class HtmlSource : HtmlControl {
/// <devdoc>
/// <para>Initializes a new instance of the <see cref='System.Web.UI.HtmlControls.HtmlSource'/> class.</para>
/// </devdoc>
public HtmlSource()
: base("source") {
}
/// <devdoc>
/// <para>
/// Gets or sets the name of and path to the video file to be displayed. This can be an absolute or relative path.
/// </para>
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
UrlProperty()
]
public string Src {
get {
string s = Attributes["src"];
return s ?? String.Empty;
}
set {
Attributes["src"] = MapStringAttributeToString(value);
}
}
/*
* Override to process src attribute
*/
protected override void RenderAttributes(HtmlTextWriter writer) {
PreProcessRelativeReferenceAttribute(writer, "src");
base.RenderAttributes(writer);
writer.Write(" /");
}
}
}