Wisej.Base.CookieCollection
Namespace: Wisej.Base
Assembly: Wisej.Framework (2.5.0.0)
Manages the collection of cookies for the current application.
Int32: Returns the number of Cookie items in the collection.
String: Returns the Cookie with a specific name from a CookieCollection.
Throws:
ArgumentNullException name is null.
Cookie: Returns the Cookie with a specific name from a CookieCollection.
Throws:
IndexOutOfRangeException index is out of range.
Adds a cookie to the collection.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
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.
Returns: Boolean.
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.
Returns: Cookie.
Returns: IEnumerator<Cookie>.
Searches for the specified cookie and returns the zero-based index of the first occurrence.
Returns: Int32.
Searches for the specified cookie by name and returns the zero-based index of the first occurrence.
Returns: Int32.
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.
Returns: Boolean. true if item is successfully removed; otherwise, false.
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.
Returns: Boolean. true if item is successfully removed; otherwise, false.
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.
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
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.
Wisej.Base.PostbackPropertyAttribute
Namespace: Wisej.Base
Assembly: Wisej.Framework (2.5.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.
Parameter | Type | Description |
---|
Returns: . True if the property allows postback requests.
property | Property to check. |
allow | Indicates whether the property is allowed or disallowed to return its value to postback requests. |
Wisej.Base.Cookie
Namespace: Wisej.Base
Assembly: Wisej.Framework (2.5.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.Component
Namespace: Wisej.Base
Assembly: Wisej.Framework (2.5.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.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
: 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 |
---|
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.
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.
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. |
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. |
Wisej.Base.TextUtils
Namespace: Wisej.Base
Assembly: Wisej.Framework (2.5.0.0)
Provides utility methods to measure, encode, and extract mnemonics from text.
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.
Parameter | Type | Description |
---|
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.
Extends and enabled 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 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 .
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.
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 |
width | The optional width to use as bounding rectangle for the text. |
text | The text to escape. |
allowHtml | Indicates that HTML tags should not be escaped. The default is false. |
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 . The conversion is performed only when allowHtml is false, or, if allowHtml is true and the text doesn't contain any html. |
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.