FsXaml


EventToMailbox

Namespace: FsXaml

Constructors

ConstructorDescription
new()
Signature: unit -> EventToMailbox

CompiledName: .ctor

Instance members

Instance memberDescription
EventArgsConverter()
Signature: unit -> IEventArgsConverter

The optional converter used to convert the EventArgs into another type for passing to the Mailbox's parameter. This allows strong typed conversion while preventing the ViewModel from requiring a hard binding to WPF

CompiledName: set_EventArgsConverter

EventArgsConverter()
Signature: unit -> unit

The optional converter used to convert the EventArgs into another type for passing to the Mailbox's parameter. This allows strong typed conversion while preventing the ViewModel from requiring a hard binding to WPF

CompiledName: get_EventArgsConverter

EventArgsConverterParameter()
Signature: unit -> obj

The converter used to map the EventArgs of the mailbox to the VM

CompiledName: set_EventArgsConverterParameter

EventArgsConverterParameter()
Signature: unit -> unit

The converter used to map the EventArgs of the mailbox to the VM

CompiledName: get_EventArgsConverterParameter

Mailbox()
Signature: unit -> obj

The MailboxProcessor

CompiledName: set_Mailbox

Mailbox()
Signature: unit -> unit

The MailboxProcessor

CompiledName: get_Mailbox

MailboxParameter()
Signature: unit -> obj

The paramter passed to the MailboxProcessor. If this is set, the EventArgs are ignored

CompiledName: set_MailboxParameter

MailboxParameter()
Signature: unit -> unit

The paramter passed to the MailboxProcessor. If this is set, the EventArgs are ignored

CompiledName: get_MailboxParameter

PassEventArgsToMailbox()
Signature: unit -> bool

Boolean indicating whether the EventArgs passed to the event handler will be forwarded to the Mailbox's Post method when the event is fired. The EventArgsConverterParameter will get used to map the types across as needed

CompiledName: set_PassEventArgsToMailbox

PassEventArgsToMailbox()
Signature: unit -> unit

Boolean indicating whether the EventArgs passed to the event handler will be forwarded to the Mailbox's Post method when the event is fired. The EventArgsConverterParameter will get used to map the types across as needed

CompiledName: get_PassEventArgsToMailbox

Static members

Static memberDescription
EventArgsConverterParameterProperty
Signature: DependencyProperty

The converter parameter used to map the EventArgs of the mailbox to the VM

CompiledName: get_EventArgsConverterParameterProperty

EventArgsConverterProperty
Signature: DependencyProperty

The converter used to map the EventArgs of the mailbox to the VM

CompiledName: get_EventArgsConverterProperty

MailboxParameterProperty
Signature: DependencyProperty

The paramter passed to the MailboxProcessor<'a>. If this is set, the EventArgs are ignored

CompiledName: get_MailboxParameterProperty

MailboxProperty
Signature: DependencyProperty

The MailboxProcessor<'a>

CompiledName: get_MailboxProperty

Fork me on GitHub