This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module Rx.DOM { | |
export interface AjaxSettings { | |
async?: boolean; | |
body?: string; | |
// This options does not seem to be used in the code yet | |
// contentType?: string; | |
crossDomain?: boolean; | |
headers?: any; | |
method?: string; | |
password?: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class FooViewModel : ReactiveObject | |
{ | |
DateTime dueDate; | |
public DateTime DueDate | |
{ | |
get { return dueDate; } | |
set { this.RaiseAndSetIfChanged(ref dueDate, value); } | |
} | |
} |