22 references to RedirectionConstants
System.ServiceModel (22)
System\ServiceModel\Channels\RedirectionDuration.cs (6)
27this.Namespace = RedirectionConstants.Namespace; 33this.Value = RedirectionConstants.Duration.Temporary; 36this.Value = RedirectionConstants.Duration.Permanent; 163if (RedirectionUtility.IsNamespaceMatch(this.Namespace, RedirectionConstants.Namespace)) 165if (string.Equals(this.Value, RedirectionConstants.Duration.Temporary, StringComparison.Ordinal)) 169else if (string.Equals(this.Value, RedirectionConstants.Duration.Permanent, StringComparison.Ordinal))
System\ServiceModel\Channels\RedirectionScope.cs (8)
28this.Namespace = RedirectionConstants.Namespace; 34this.Value = RedirectionConstants.Scope.Message; 37this.Value = RedirectionConstants.Scope.Session; 40this.Value = RedirectionConstants.Scope.Endpoint; 169if (RedirectionUtility.IsNamespaceMatch(this.Namespace, RedirectionConstants.Namespace)) 171if (string.Equals(this.Value, RedirectionConstants.Scope.Message, StringComparison.Ordinal)) 175else if (string.Equals(this.Value, RedirectionConstants.Scope.Session, StringComparison.Ordinal)) 179else if (string.Equals(this.Value, RedirectionConstants.Scope.Endpoint, StringComparison.Ordinal))
System\ServiceModel\Channels\RedirectionType.cs (8)
27this.Namespace = RedirectionConstants.Namespace; 33this.Value = RedirectionConstants.Type.Cache; 36this.Value = RedirectionConstants.Type.Resource; 39this.Value = RedirectionConstants.Type.UseIntermediary; 171if (RedirectionUtility.IsNamespaceMatch(this.Namespace, RedirectionConstants.Namespace)) 173if (string.Equals(this.Value, RedirectionConstants.Type.Cache, StringComparison.Ordinal)) 177else if (string.Equals(this.Value, RedirectionConstants.Type.Resource, StringComparison.Ordinal)) 181else if (string.Equals(this.Value, RedirectionConstants.Type.UseIntermediary, StringComparison.Ordinal))