17 references to InternalRedirectionScope
System.ServiceModel (17)
System\ServiceModel\Channels\RedirectionScope.cs (17)
14static RedirectionScope endpoint = new RedirectionScope(InternalRedirectionScope.Endpoint); 15static RedirectionScope message = new RedirectionScope(InternalRedirectionScope.Message); 16static RedirectionScope session = new RedirectionScope(InternalRedirectionScope.Session); 18InternalRedirectionScope internalScope; 26RedirectionScope(InternalRedirectionScope scope) 33case InternalRedirectionScope.Message: 36case InternalRedirectionScope.Session: 39case InternalRedirectionScope.Endpoint: 52this.internalScope = InternalRedirectionScope.Unknown; 70internal InternalRedirectionScope InternalScope 74if (this.internalScope == InternalRedirectionScope.Unknown) 173this.internalScope = InternalRedirectionScope.Message; 177this.internalScope = InternalRedirectionScope.Session; 181this.internalScope = InternalRedirectionScope.Endpoint; 185this.internalScope = InternalRedirectionScope.Custom; 190this.internalScope = InternalRedirectionScope.Custom; 193Fx.Assert(this.internalScope != InternalRedirectionScope.Unknown, "Failed to correctly detect internal redirection scope");