Click or drag to resize

CommandProxy Class

Proxy for a context command. E.g. to switch between different commands depending on another provider.
Inheritance Hierarchy
SystemObject
  UnityEngineObject
    UnityEngineComponent
      UnityEngineBehaviour
        UnityEngineMonoBehaviour
          Slash.Unity.DataBind.Core.PresentationDataBindingOperator
            Slash.Unity.DataBind.Foundation.CommandsCommandProxy

Namespace:  Slash.Unity.DataBind.Foundation.Commands
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public class CommandProxy : DataBindingOperator

The CommandProxy type exposes the following members.

Constructors
  NameDescription
Public methodCommandProxy
Initializes a new instance of the CommandProxy class
Top
Methods
  NameDescription
Public methodDeinit
Deinitializes the operator. By default this method removes the added bindings.
(Overrides DataBindingOperatorDeinit.)
Public methodInit
Initializes the operator. This method should be used to add bindings.
(Overrides DataBindingOperatorInit.)
Public methodInvokeCommand
Invokes the bound command.
Public methodInvokeCommand(Boolean)
Invokes the bound command with the specified argument.
Public methodInvokeCommand(Int32)
Invokes the bound command with the specified argument.
Public methodInvokeCommand(Object)
Invokes the bound command with the specified arguments.
Public methodInvokeCommand(Single)
Invokes the bound command with the specified argument.
Public methodInvokeCommand(String)
Invokes the bound command with the specified argument.
Top
Fields
  NameDescription
Public fieldCommand
Command this proxy is for.
Top
See Also