Get() public static method

public static Get ( Object Object ) : RawWrapper
Object Object
return RawWrapper
示例#1
0
 static public RawWrapper Escape(dynamic Object)
 {
     return(RawWrapper.Get(HtmlUtils.EscapeHtmlCharacters(Object)));
 }
示例#2
0
 static public RawWrapper Raw(dynamic Object)
 {
     return(RawWrapper.Get(Object));
 }