System.Markdown
Namespace: System
Assembly: Wisej.Framework (4.0.0.0)
Provides services to convert markdown text to HTML.
Converts the markdown text to HTML.
text
Markdown text to convert to HTML
Returns: String. HTML text
System.StringExtensions
Namespace: System
Assembly: Wisej.Framework (4.0.0.0)
Extends the String class.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Replaces diacritics (i.e. "ÇĆĈĊČ" = "C") with their invariant equivalent.
value
String to normalize.
Returns: String. A string without diacritics.
System.FontExtensions
Namespace: System
Assembly: Wisej.Framework (4.0.0.0)
Extends the Font class.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Changes the FontStyle of the specified font .
font
Base font.
style
Returns: Font. A new Font with the same size and family as font and the specified style .
Changes the size of the specified font .
font
Base font.
size
Returns: Font. A new Font with the new size and same family as font .
Changes the size of the specified font .
font
Base font.
size
New size using the specified unit .
unit
Returns: Font. A new Font with the new size and unit .
Changes the size and style of the specified font .
font
Base font.
size
New size using the specified unit .
style
unit
Returns: Font. A new Font with the new size, unit , and style .
Creates a copy of the Font preserving the OriginalFontName.
font
Returns: Font. A new Font identical to the original font..
Returns whether the specified font is a theme font.
font
Font to check.
Returns: Boolean. True if font is a theme font.
New .
New size using the same of the original font .
New .
New see .
New .
System.DateTimeExtensions
Namespace: System
Assembly: Wisej.Framework (4.0.0.0)
Extends DateTime with methods to adjust the server-side time to the client's timezone.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Converts the DateTime value to the time zone of the client's browser.
value
Returns: DateTime.
Converts the DateTime value to the time zone of the client's browser.
value
timezoneOffset
The time-zone offset in minutes.
Returns: DateTime.
Converts Now to the client's time zone. Used only internally and only for Now.
value
Returns: DateTime.
The to adjust to the client's time zone.
The to adjust to the client's time zone.
System.JSON
Namespace: System
Assembly: Wisej.Framework (4.0.0.0)
Provides JSON serialization and parsing functionality and extends every Object with the ToJSON methods.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.
json
The JSON string to parse.
Returns: Object. An instance of DynamicObject containing all the values parsed from the json string.
Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.
stream
Returns: Object. An instance of DynamicObject containing all the values parsed from the stream stream.
Serializes the object to a JSON string.
obj
The object to serialize.
True to format the output JSON string.
Returns: String. A String representing the serialized object.
Serializes the object to a JSON string.
obj
The object to serialize.
options
Returns: String. A String representing the serialized object.
Serializes the object to a JSON string.
obj
The object to serialize.
True to format the output JSON string.
Returns: String. A String representing the serialized object.
Serializes the object to a JSON string.
obj
The object to serialize.
options
Returns: String. A String representing the serialized object.
A providing the JSON string to parse.
formatted
A combination of flags.
formatted
A combination of flags.