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