Esempio n. 1
0
 public async Task <ApiResponse> Set(ISelector selector, Transition transition)
 {
     return(await this.Execute(transition, selector.GetSelectorText()));
 }
Esempio n. 2
0
 public async Task <ApiResponse> Set(ISelector selector, SentState state)
 {
     return(await this.Execute(state, selector.GetSelectorText()));
 }
Esempio n. 3
0
 public async Task <IEnumerable <Light> > Get(ISelector selector)
 {
     return(await this.Execute(selector.GetSelectorText()));
 }
Esempio n. 4
0
 public async Task <ApiResponse> Set(ISelector selector, Transition transition)
 {
     return(await this.Execute(transition, selector.GetSelectorText()).ConfigureAwait(continueOnCapturedContext: false));
 }
Esempio n. 5
0
 public async Task <IEnumerable <Light> > Get(ISelector selector)
 {
     return(await this.Execute(selector.GetSelectorText()).ConfigureAwait(continueOnCapturedContext: false));
 }
Esempio n. 6
0
 public async Task <ApiResponse> Set(ISelector selector, Mix mix)
 {
     return(await this.Execute(mix, selector.GetSelectorText()));
 }
Esempio n. 7
0
 public async Task <ApiResponse> Set(ISelector selector, SentState state)
 {
     return(await this.Execute(state, selector.GetSelectorText()).ConfigureAwait(continueOnCapturedContext: false));
 }