예제 #1
0
 public override Step ExecuteStep(StepContext stepContext)
 {
     stepContext.ProbeStack.Push(base.EasConnectionSettings.EasEndpointSettings.Domain);
     return(base.ExecuteStep(stepContext));
 }
예제 #2
0
 // Token: 0x060000E7 RID: 231 RVA: 0x000041FC File Offset: 0x000023FC
 protected override bool IsStepAllowable(StepContext stepContext)
 {
     return(stepContext.Request.AutodiscoverOption != AutodiscoverOption.ExistingEndpoint);
 }
예제 #3
0
 protected override bool IsStepAllowable(StepContext stepContext)
 {
     return(stepContext.Request.AutodiscoverOption != AutodiscoverOption.Probes);
 }
예제 #4
0
 // Token: 0x060000DF RID: 223 RVA: 0x00004070 File Offset: 0x00002270
 public override Step ExecuteStep(StepContext stepContext)
 {
     return(base.NextStepOnFailure);
 }
예제 #5
0
 public virtual Step ExecuteStep(StepContext stepContext)
 {
     return(this.PrimitiveExecuteStep(stepContext));
 }
예제 #6
0
 protected abstract bool IsStepAllowable(StepContext stepContext);
예제 #7
0
 protected virtual Step ProcessSuccessfulHttpResponse(HttpWebResponse webResponse, StepContext stepContext)
 {
     stepContext.Response            = this.ExtractResponse(webResponse);
     stepContext.Response.HttpStatus = (HttpStatus)webResponse.StatusCode;
     return(Step.Succeeded);
 }