3 writes to onFailure
System.ServiceModel (3)
System\UriTemplateTrieNode.cs (3)
585
nextNode.
onFailure
= new UriTemplateTrieLocation(this, UriTemplateTrieIntraNodeLocation.AfterCompound);
605
newNode.
onFailure
= new UriTemplateTrieLocation(this, UriTemplateTrieIntraNodeLocation.AfterLiteral);
619
newNode.
onFailure
= new UriTemplateTrieLocation(this, UriTemplateTrieIntraNodeLocation.AfterVariable);
10 references to onFailure
System.ServiceModel (10)
System\UriTemplateTrieNode.cs (10)
215
nextStep = new SingleLocationOrLocationsSet(currentLocation.node.
onFailure
);
286
nextStep = new SingleLocationOrLocationsSet(currentLocation.node.
onFailure
);
338
nextStep = new SingleLocationOrLocationsSet(currentLocation.node.
onFailure
);
352
return locationsSet[0][0].node.
onFailure
;
399
Fx.Assert(kvp.Value.node.
onFailure
.node == current, "back pointer should point back to here");
400
Fx.Assert(kvp.Value.node.
onFailure
.locationWithin == UriTemplateTrieIntraNodeLocation.AfterLiteral, "back-pointer should be AfterLiteral");
423
Fx.Assert(location.node.
onFailure
.node == current, "back pointer should point back to here");
424
Fx.Assert(location.node.
onFailure
.locationWithin == UriTemplateTrieIntraNodeLocation.AfterCompound, "back-pointer should be AfterCompound");
433
Fx.Assert(current.nextVariableSegment.node.
onFailure
.node == current, "back pointer should point back to here");
434
Fx.Assert(current.nextVariableSegment.node.
onFailure
.locationWithin == UriTemplateTrieIntraNodeLocation.AfterVariable, "back-pointer should be AfterVariable");