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