Class AbstractBindable
Inheritance
System.Object
AbstractBindable
Assembly: Steeltoe.Stream.StreamBase.dll
Syntax
public abstract class AbstractBindable : object, IBindable
Constructors
|
Edit this page
View Source
AbstractBindable()
Declaration
protected AbstractBindable()
|
Edit this page
View Source
AbstractBindable(Type)
Declaration
protected AbstractBindable(Type binding)
Parameters
Type |
Name |
Description |
Type |
binding |
|
Properties
|
Edit this page
View Source
BindingType
Declaration
public virtual Type BindingType { get; }
Property Value
|
Edit this page
View Source
Declaration
public virtual ICollection<string> Inputs { get; }
Property Value
Type |
Description |
ICollection<System.String> |
|
|
Edit this page
View Source
Outputs
Declaration
public virtual ICollection<string> Outputs { get; }
Property Value
Type |
Description |
ICollection<System.String> |
|
Methods
|
Edit this page
View Source
Declaration
public virtual ICollection<IBinding> CreateAndBindInputs(IBindingService bindingService)
Parameters
Returns
|
Edit this page
View Source
CreateAndBindOutputs(IBindingService)
Declaration
public virtual ICollection<IBinding> CreateAndBindOutputs(IBindingService bindingService)
Parameters
Returns
|
Edit this page
View Source
Declaration
public virtual object GetBoundInputTarget(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
GetBoundOutputTarget(String)
Declaration
public virtual object GetBoundOutputTarget(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
GetBoundTarget(String)
Declaration
public virtual object GetBoundTarget(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
Declaration
public virtual void UnbindInputs(IBindingService bindingService)
Parameters
|
Edit this page
View Source
UnbindOutputs(IBindingService)
Declaration
public virtual void UnbindOutputs(IBindingService bindingService)
Parameters
Implements