Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Wisej.Base.Cookie
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.2.0.0)
Represents an individual HTTP cookie.
Creates a new instance of Cookie.
Creates a new instance of Cookie.
Name | Type | Description |
---|---|---|
Creates a new instance of Cookie.
Name | Type | Description |
---|---|---|
Creates a new instance of Cookie.
Creates a new instance of Cookie.
String: Returns or sets the domain to associate the cookie with.
DateTime: Returns or sets the expiration date and time for the cookie.
String: Returns or sets the name for the Cookie.
String: Returns or sets the path of the Cookie.
SameSiteMode: Returns or sets the value for the SameSite attribute of the cookie. The default value is Unspecified.
Boolean: Returns or sets whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only.
String: Returns or sets an individual cookie value.
Wisej.Base.PostbackPropertyAttribute
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.2.0.0)
Allows the property to return its value to postback requests.
Initializes the attribute.
Initializes the attribute.
Name | Type | Description |
---|
: Returns or sets whether the property is allows to return its value to postback requests.
Returns true if the property allows postback requests.
Wisej.Base.Component
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.2.0.0)
The base class for Wisej components that are not controls. Wisej components are still managed on the client and the server but are not present on the designer surface. Examples of wisej components are: menu items, image lists, tree nodes, list items.
Default constructor
Default constructor
Name | Type | Description |
---|
: Checks if the dynamic object was created and has any value.
Runs the JavaScript function within the component's context in the browser.
Runs the JavaScript function within the component's context in the browser and returns the value to the callback method.
Runs the javaScript code within the component's context in the browser.
Runs the javaScript code within the component's context in the browser and returns the value to the callback method.
Updates the component on the client.
Wisej.Base.TextUtils
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.2.0.0)
Provides utility methods to measure, encode, and extract mnemonics from text.
Name | Type | Description |
---|
Escapes special characters in the specified string.
Parameter | Type | Description |
---|
Returns: . The escaped string. Null if the specified string was null, or empty if it was empty.
Removes the ampersand from the text and encodes HTML characters if necessary.
Returns the first character that is preceded by an ampersand (&).
Returns the size of the specified text when rendered with the specified font.
Returns the size of the specified text when rendered with the specified font.
Returns the size of the specified text when rendered with the specified font.
Returns the size of the specified text when rendered with the specified font.
Returns the size of the specified text when rendered with the specified font.
Returns the size of the specified text when rendered with the specified font.
Wisej.Base.CookieCollection
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.2.0.0)
Manages the collection of cookies for the current application.
: Returns the number of items in the collection.
: Returns the with a specific name from a .
Throws:
name is null.
: Returns the with a specific name from a .
Throws:
Adds a cookie to the collection.
Adds a new cookie to the collection.
Adds a new cookie to the collection.
Adds a new cookie to the collection.
Adds a new cookie to the collection.
Delete all cookies from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Determines whether the cookie is present in the collection.
Copies the cookie collection to a compatible one-dimensional array, starting at the specified index of the target array.
Returns the cookie with the specified name.
Searches for the specified cookie and returns the zero-based index of the first occurrence.
Searches for the specified cookie by name and returns the zero-based index of the first occurrence.
Removes the specified cookie from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Removes the specified cookie from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Removes the cookie at the specified index. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Parameter | Type | Description |
---|
Returns: . True if the property allows postback requests.
: Indicates that the component has been disposed.
: Returns a dynamic object that can be used to store custom data in relation to this component.
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Asynchronously runs the JavaScript function within the component's context in the browser and returns an awaitable containing the value returned by the remote call.
Parameter | Type | Description |
---|
Returns: . An awaitable that represents the asynchronous operation.
Releases all resources used by the .
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Asynchronously runs the javaScript code within the component's context in the browser and returns an awaitable that contains the value returned by the remote call.
Parameter | Type | Description |
---|
Returns: . An awaitable that represents the asynchronous operation.
Fired when the component is disposed.
Name | Description |
---|
Name | Description |
---|
Parameter | Type | Description |
---|
Returns: . The escaped string. Null if the specified string was null, or empty if it was empty.
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: . The computed of the specified text.
Parameter | Type | Description |
---|
Returns: . The computed of the specified text.
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Asynchronously returns the size of the specified text when rendered with the specified font. The measurement is performed on the browser. Returns an awaitable that contains the measured size.
Parameter | Type | Description |
---|
Returns: . An awaitable that represents the asynchronous operation.
index is out of range.
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: .
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: .
Parameter | Type | Description |
---|
Returns: . true if item is successfully removed; otherwise, false.
Parameter | Type | Description |
---|
Returns: . true if item is successfully removed; otherwise, false.
Parameter | Type | Description |
---|
name
The name of the cookie.
value
The value of the cookie.
expires
The expiration date/time of the cookie.
name
The name of the cookie.
value
The value of the cookie.
domain
The domain, or partial domain, associated with the cookie.
expires
The expiration date/time of the cookie.
property | Property to check. |
function | The name of the JavaScript function to execute. |
args | The arguments to pass to the function. |
function | The name of the JavaScript function to execute. |
callback | Asynchronous callback method that receives the return value. |
args | The arguments to pass to the function. |
function | The name of the JavaScript function to execute. |
args | The arguments to pass to the function. |
javaScript | The JavaScript code to run on the client. |
javaScript | The JavaScript code to evaluate on the client. |
callback | Asynchronous callback method that receives the return value. |
javaScript | The JavaScript code to evaluate on the client. |
Displays a message box that can contain text, buttons, and symbols that inform and instruct the user. |
Implements a timer that raises an event at user-defined intervals. |
Provides support for animating controls or windows using predefined animations definitions or custom animations in response to certain events. |
Provides a user interface for indicating that a control on a form has an error associated with it. |
Represents a small rectangular pop-up window that displays a brief help text next to a control when it gets activated (focused). |
Allows controls to execute javascript code. |
Adds CSS styling to controls. |
Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control. |
Displays an alert box that can contain an icon and text that inform and instruct the user. Alert boxes are not modal and can disappear automatically. |
Displays a toast that can contain an icon and text. |
Represents the base functionality for all menus. |
All wisej components implement this interface. |
Allows an object to serialize itself. |
text | The text to convert. |
allowHtml | Whether to encode HTML characters. |
useMnemonic | Whether to convert the first mnemonic to an underlined character. |
translateNewLines | Whether to convert newlines (CRLF) to <BR/>. The conversion is performed only when allowHtml is false, or, if allowHtml is true and the text doesn't contain any HTML. |
text | The string from which to extract the mnemonic character. |
text | The text to measure. |
font |
text | The text to measure. |
font |
format | Formatting information. |
text | The text to measure. |
font |
layoutArea |
text | The text to measure. |
font |
layoutArea |
format | Formatting information. |
text | The text to measure. |
allowHtml | The text to measure may contain HTML tags. |
font |
callback | Result callback method, invoked when the client has finished measuring the text. |
text | The text to measure. |
allowHtml | The text to measure may contain HTML tags. |
font |
width | The width to use as bounding rectangle for the text. |
callback | Result callback method, invoked when the client has finished measuring the text. |
text | The text to measure. |
allowHtml | The text to measure may contain HTML tags. |
font |
The optional width to use as bounding rectangle for the text. |
cookie | The cookie to add. |
name | The case-sensitive name of the cookie. |
value | The value of the new cookie to add. |
name | The case-sensitive name of the cookie. |
value | The value of the new cookie to add. |
domain | The domain, or partial domain, associated with the cookie. |
name | The case-sensitive name of the cookie. |
value | The value of the new cookie. |
expires | The expiration date/time of the new cookie. |
name | The case-sensitive name of the cookie. |
value | The value of the new cookie. |
domain | The value of the new cookie. |
expires | The expiration date/time of the new cookie. |
cookie | The cookie to locate. |
array | The one-dimensional System.Array that is the destination of the elements copied. |
index | The zero-based index in array at which copying begins. |
name | The case-sensitive name of the cookie to locate. |
cookie | The cookie to locate. |
name | The case-sensitive name cookie to locate. |
cookie | The cookie to remove from the collection. |
name | The case-sensitive name of the cookie to remove from the collection. |
index | The zero-based index of the element to remove. |
name
The name of the cookie.
value
The value of the cookie.
name
The name of the cookie.
value
The value of the cookie.
domain
The domain, or partial domain, associated with the cookie.
allow | Indicates whether the property is allowed or disallowed to return its value to postback requests. |
embedded | Indicates whether the component is embedded in a parent component. Embedded components don't update themselves, instead their parent is in charge of updating the corresponding client widget. |
ConvertToString | Pluggable method used to convert user input to a string. Since 3.0.10 |
MeasureString | Pluggable method used to measure strings. |
text | The text to escape. |
Indicates that HTML tags should not be escaped. The default is false. |
Extends and enables the component to participated if data binding operations and have their own .
Extends and enables the components to appear on the designer surface.
Represents a component in the control's taskbar.
Represents a component in the control's taskbar that can host any .
Represents a DateTime component in the control's taskbar.
Add rotation capabilities along the X,Y,Z axis to controls.
Represent a tool widget that can be displayed inside another control. A tool widget is different from other child controls: it's displayed inside the parent's layout. For example, the control shows tool widgets inside the caption bar. When a tool widget is pressed, it fires the toolClicked event on the container.
Provides methods to manage a collection of objects. This class cannot be inherited.
Displays a standard column header in a control.
Displays an image column header in a control.
Represents an individual menu item that is displayed within a or and always shows a checkbox next to the label.
Represents a context menu associated to a .
Represents an individual menu item that is displayed within a or rendered using the <a> link element to let the browser process the specified URL.
Represents the main menu in a .
Represents an individual item that is displayed within a or .
Represents a panel in a control that can host any .
Represents a panel in a control.
Represents an item in the .
Represents a node of a .
The to apply to the measured text.
The to apply to the measured text.
The to apply to the measured text.
The to use as bounding rectangle for the text.
The to apply to the measured text.
The to use as bounding rectangle for the text.
The to apply to the measured text.
The to apply to the measured text.
The to apply to the measured text.
width
allowHtml
Lax
Indicates the client should send the cookie with "same-site" requests, and with "cross-site" top-level navigations.
None
Indicates the client should disable same-site restrictions. When using this value, the cookie must also have the Secure property set to true.
Strict
Indicates the client should only send the cookie with "same-site" requests.
Unspecified
No SameSite field will be set, the client should follow its default cookie policy.
Returns or sets the value for the SameSite attribute of the cookie. The default value is Unspecified.