C# 클래스 WebMarkupMin.Core.Helpers.HtmlAttributeTypeHelpers

HTML attribute type helpers
파일 보기 프로젝트 열기: Taritsyn/WebMarkupMin

공개 메소드들

메소드 설명
IsBooleanAttribute ( string attributeNameInLowercase ) : bool

Checks whether the attribute is boolean

IsEventAttribute ( string attributeNameInLowercase ) : bool

Checks whether the attribute is event

IsNumericAttribute ( string tagNameInLowercase, string attributeNameInLowercase ) : bool

Checks whether the attribute is numeric

IsUriBasedAttribute ( string tagNameInLowercase, string attributeNameInLowercase, IList attributes ) : bool

Checks whether the attribute is URI-based

IsXmlBasedAttribute ( string attributeNameInLowercase ) : bool

Checks whether the attribute is XML-based

메소드 상세

IsBooleanAttribute() 공개 정적인 메소드

Checks whether the attribute is boolean
public static IsBooleanAttribute ( string attributeNameInLowercase ) : bool
attributeNameInLowercase string Attribute name in lowercase
리턴 bool

IsEventAttribute() 공개 정적인 메소드

Checks whether the attribute is event
public static IsEventAttribute ( string attributeNameInLowercase ) : bool
attributeNameInLowercase string Attribute name in lowercase
리턴 bool

IsNumericAttribute() 공개 정적인 메소드

Checks whether the attribute is numeric
public static IsNumericAttribute ( string tagNameInLowercase, string attributeNameInLowercase ) : bool
tagNameInLowercase string Tag name in lowercase
attributeNameInLowercase string Attribute name in lowercase
리턴 bool

IsUriBasedAttribute() 공개 정적인 메소드

Checks whether the attribute is URI-based
public static IsUriBasedAttribute ( string tagNameInLowercase, string attributeNameInLowercase, IList attributes ) : bool
tagNameInLowercase string Tag name in lowercase
attributeNameInLowercase string Attribute name in lowercase
attributes IList List of attributes
리턴 bool

IsXmlBasedAttribute() 공개 정적인 메소드

Checks whether the attribute is XML-based
public static IsXmlBasedAttribute ( string attributeNameInLowercase ) : bool
attributeNameInLowercase string Attribute name in lowercase
리턴 bool