⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ssfx.core.xml

📁 经典编程900例(C语言),主要是C基础知识
💻 XML
📖 第 1 页 / 共 5 页
字号:
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ssfx.Core</name>
    </assembly>
    <members>
        <member name="T:ScriptFX.UI.IEditableText">
            <summary>
            Represents a control with text display and edit semantics.
            </summary>
        </member>
        <member name="P:ScriptFX.UI.IEditableText.Text">
            <summary>
            The text being displayed or edited by the control.
            </summary>
        </member>
        <member name="E:ScriptFX.UI.IEditableText.TextChanged">
            <summary>
            Raised when the text is changed via the user interface.
            </summary>
        </member>
        <member name="T:ScriptFX.UI.IDragSource">
            <summary>
            Represents an object that can initiate a drag operation
            and provide the associated data object.
            This interface allows the source to monitor the progress
            of the drag operation it initiates.
            </summary>
        </member>
        <member name="M:ScriptFX.UI.IDragSource.OnDragStart(System.Object)">
            <summary>
            Notifies the drag source of the start of the drag/drop operation.
            </summary>
            <param name="context">Any context information passed to the DragDropManager along with the drag/drop operation.</param>
        </member>
        <member name="M:ScriptFX.UI.IDragSource.OnDrag(System.Object)">
            <summary>
            Notifies the drag source as the drag/drop operation continues.
            </summary>
            <param name="context">Any context information passed to the DragDropManager along with the drag/drop operation.</param>
        </member>
        <member name="M:ScriptFX.UI.IDragSource.OnDragEnd(System.Boolean,System.Object)">
            <summary>
            Notifies the drag source of the end of the drag/drop operation.
            </summary>
            <param name="canceled">Whether the drag/drop operation was canceled.</param>
            <param name="context">Any context information passed to the DragDropManager along with the drag/drop operation.</param>
        </member>
        <member name="P:ScriptFX.UI.IDragSource.DOMElement">
            <summary>
            Retrieves the DOM element associated with the source.
            This is used to align the top-left corner of the drag visual.
            </summary>
        </member>
        <member name="T:ScriptFX.UI.DragDropData">
            <summary>
            Encapsulates information about the data being dragged.
            </summary>
        </member>
        <member name="F:ScriptFX.UI.DragDropData.EnableDataTransfer">
            <summary>
            Whether to enable data transfer of the data object.
            </summary>
        </member>
        <member name="F:ScriptFX.UI.DragDropData.Mode">
            <summary>
            The type of drag/drop operation.
            </summary>
        </member>
        <member name="F:ScriptFX.UI.DragDropData.DataType">
            <summary>
            The type of the data being dragged.
            </summary>
        </member>
        <member name="F:ScriptFX.UI.DragDropData.Data">
            <summary>
            The data being dragged.
            </summary>
        </member>
        <member name="M:ScriptFX.UI.DragDropData.#ctor(ScriptFX.UI.DragMode,System.String,System.Object)">
            <summary>
            Creates a DragDropData instance with the supplied information about
            the data, its type, and the type of drag operation to perform.
            </summary>
            <param name="mode">The type of drag/drop operation.</param>
            <param name="dataType">The data type of the object being dragged.</param>
            <param name="data">The data being dragged.</param>
        </member>
        <member name="T:ScriptFX.JSON">
            <summary>
            JSON is a utility class to provide serialization and deserialization of
            object graphs to/from JavaScript Object Notation (JSON) format.
            JSON is a data format. In other words, the serialized state does not
            contain type information. It only contains data. Therefore the object
            graph being serialized should not contain custom types. The only allowable
            types are JavaScript intrinsic types (Object, Array, String, Boolean, Number,
            and Date).
            </summary>
        </member>
        <member name="M:ScriptFX.JSON.Deserialize(System.String)">
            <summary>
            Deserializes an object graph represented by the specified JSON string.
            </summary>
            <param name="s">The serialized object graph.</param>
            <returns>The deserialized object graph.</returns>
        </member>
        <member name="M:ScriptFX.JSON.Serialize(System.Object)">
            <summary>
            Serializes the specified object graph into its equivalent JSON string representation.
            </summary>
            <param name="o">The object graph to serialize.</param>
            <returns>The serialized JSON representation.</returns>
        </member>
        <member name="T:ScriptFX.IEventManager">
            <summary>
            Provides a mechanism for loosely coupled event publishing
            and subscribing. Each event is associated with a unique
            type or name.
            Subscribers can register for events, and publishers can raise
            events. An event manager routes events without requiring
            the publisher and subscriber to know about each other.
            </summary>
        </member>
        <member name="M:ScriptFX.IEventManager.RaiseEvent(System.String,System.Object,System.EventArgs)">
            <summary>
            Allows an event publisher to raise an event.
            </summary>
            <param name="eventType">The unique name of the event.</param>
            <param name="sender">The event publisher.</param>
            <param name="e">Any information associated with the event.</param>
        </member>
        <member name="M:ScriptFX.IEventManager.RegisterEvent(System.String,System.Object,System.EventArgs)">
            <summary>
            Allows an event publisher to raise an event, and at the same
            time indicate that the event manager should save the event
            and automatically raise it should a subscriber register to
            handle it at a later time.
            </summary>
            <param name="eventType">The unique name of the event.</param>
            <param name="sender">The event publisher.</param>
            <param name="e">Any information associated with the event.</param>
            <returns>A cookie that should be used to unregister the event.</returns>
        </member>
        <member name="M:ScriptFX.IEventManager.RegisterEventHandler(System.String,System.EventHandler)">
            <summary>
            Allows an event subscriber to register an event handler to be
            invoked whenever an event of the specified type is raised.
            </summary>
            <param name="eventType">The unique name of the event.</param>
            <param name="handler">The handler to be invoked when the event occurs.</param>
        </member>
        <member name="M:ScriptFX.IEventManager.UnregisterEvent(System.Object)">
            <summary>
            Unregisters an event previously registered with the event manager.
            </summary>
            <param name="eventCookie">The registration cookie.</param>
        </member>
        <member name="M:ScriptFX.IEventManager.UnregisterEventHandler(System.String,System.EventHandler)">
            <summary>
            Allows an event subscriber to unregister an event handler that has been
            registered to handle an event of the specified type.
            </summary>
            <param name="eventType">The unique name of the event.</param>
            <param name="handler">The handler registered to be invoked when the event occurs.</param>
        </member>
        <member name="T:ScriptFX.Net.HTTPRequest">
            <summary>
            Encapsulates information for communicating with a server in order
            to send data to the server, or recieve data from the server.
            </summary>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.Abort">
            <summary>
            Aborts the request, and ignores any response that might have resulted.
            </summary>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.CreateRequest(System.String,ScriptFX.Net.HTTPVerb)">
            <summary>
            Creates a new HTTPRequest to the endpoint specified by the URI.
            The URI can be a simple string, in which case the default HTTP transport, i.e.
            XMLHttp is used.
            The URI can also be a serialized JSON object containing two fields: a string
            'uri' and a Type 'transportType'. This allows selecting a custom transport to
            be used to perform the request. The URI can be constructed programmatically via
            the HTTPTransport.CreateURI method.
            </summary>
            <param name="uri">The URI representing the server endpoint.</param>
            <param name="verb">The HTTP verb to be used for the request.</param>
            <returns>An HTTPRequest object for use to communicate with the server.</returns>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.CreateURI(System.String,System.Dictionary)">
            <summary>
            Creates a URI with the specific base URI, appended with the specified name/value pairs.
            </summary>
            <param name="uri">The base URI.</param>
            <param name="parameters">The set of name/value pairs to add.</param>
            <returns>The URI with parameters added as query string variables.</returns>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.Dispose">
            <summary>
            Disposes an HTTPRequest instance.
            </summary>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.Invoke(ScriptFX.Net.HTTPRequestCompletedCallback,System.Object)">
            <summary>
            Initiates the communication with the server.
            </summary>
            <param name="callback">The callback to invoke upon completion of the request.</param>
            <param name="context">An optional context object to be passed to the callback.</param>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.SetContentAsForm(System.Dictionary)">
            <summary>
            Sets the request body to the form encoded representation
            of the specified data. The content type of the request is
            also set to application/x-www-form-urlencoded.
            </summary>
            <param name="data">The dictionary representing the request body.</param>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.SetContentAsJSON(System.Dictionary)">
            <summary>
            Sets the request body to the JSON serialized representation
            of the specified data. The content type of the request is
            also set to text/json.
            </summary>
            <param name="data">The dictionary representing the request body.</param>
        </member>
        <member name="M:ScriptFX.Net.HTTPRequest.SetCredentials(System.String,System.String)">
            <summary>
            Sets the user name and password of the credentials to use to
            authenticate the request.
            </summary>
            <param name="userName">The user name within the credential.</param>
            <param name="password">The password within the credential.</param>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.Content">
            <summary>
            Any content associated with the request sent as part of the
            request body. This is only valid in the context of requests
            using the POST HTTP verb.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.HasCredentials">
            <summary>
            Returns true if the request has been associated with custom
            credentials.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.HasHeaders">
            <summary>
            Returns true if the request has been associated with custom
            request headers.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.Headers">
            <summary>
            The set of request headers to be sent along with the request.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.Password">
            <summary>
            The password to use to authenticate the request.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.Response">
            <summary>
            The response generated by the server. This is only valid
            when the request has successfully completed.
            </summary>
        </member>
        <member name="P:ScriptFX.Net.HTTPRequest.State">
            <summary>
            The current state of the request.
            </summary>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -