13 references to Doctype
System.Web.Mobile (13)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicControlAdapter.cs (9)
414
private
Doctype
_documentType =
Doctype
.NotSet;
416
protected virtual
Doctype
DocumentType {
418
if (_documentType !=
Doctype
.NotSet) {
422
return
Doctype
.Wml20;
428
return _documentType =
Doctype
.XhtmlMobileProfile;
430
return _documentType =
Doctype
.XhtmlBasic;
444
if (DocumentType ==
Doctype
.XhtmlMobileProfile || DocumentType ==
Doctype
.Wml20) {
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlMobileTextWriter.cs (4)
67
_doctypeDeclarations[
Doctype
.XhtmlBasic] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML Basic 1.0//EN\" \"http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd\">";
68
_doctypeDeclarations[
Doctype
.XhtmlMobileProfile] = "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
69
_doctypeDeclarations[
Doctype
.Wml20] = "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD WML 2.0//EN\" \"http://www.wapforum.org/dtd/wml20.dtd\" >";
612
public virtual void WriteDoctypeDeclaration (
Doctype
type){