4 instantiations of RedirectionScope
System.ServiceModel (4)
System\ServiceModel\Channels\RedirectionScope.cs (4)
14static RedirectionScope endpoint = new RedirectionScope(InternalRedirectionScope.Endpoint); 15static RedirectionScope message = new RedirectionScope(InternalRedirectionScope.Message); 16static RedirectionScope session = new RedirectionScope(InternalRedirectionScope.Session); 124return new RedirectionScope(scope, ns);
21 references to RedirectionScope
System.ServiceModel (20)
System\ServiceModel\Channels\RedirectionException.cs (8)
23public RedirectionException(RedirectionType type, RedirectionDuration duration, RedirectionScope scope, params RedirectionLocation[] locations) 28public RedirectionException(RedirectionType type, RedirectionDuration duration, RedirectionScope scope, Exception innerException, params RedirectionLocation[] locations) 33public RedirectionException(string message, RedirectionType type, RedirectionDuration duration, RedirectionScope scope, params RedirectionLocation[] locations) 38public RedirectionException(string message, RedirectionType type, RedirectionDuration duration, RedirectionScope scope, Exception innerException, params RedirectionLocation[] locations) 95this.Scope = (RedirectionScope)info.GetValue("Scope", typeof(RedirectionScope)); 110info.AddValue("Scope", this.Scope, typeof(RedirectionScope)); 116public RedirectionScope Scope { get; private set; }
System\ServiceModel\Channels\RedirectionScope.cs (12)
14static RedirectionScope endpoint = new RedirectionScope(InternalRedirectionScope.Endpoint); 15static RedirectionScope message = new RedirectionScope(InternalRedirectionScope.Message); 16static RedirectionScope session = new RedirectionScope(InternalRedirectionScope.Session); 63public static RedirectionScope Endpoint { get { return endpoint; } } 65public static RedirectionScope Message { get { return message; } } 66public static RedirectionScope Session { get { return session; } } 83public static bool operator !=(RedirectionScope left, RedirectionScope right) 88public static bool operator ==(RedirectionScope left, RedirectionScope right) 112public static RedirectionScope Create(string scope, string ns) 133result = ((obj as RedirectionScope) == this);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (1)
865RedirectionScope.Session, new RedirectionLocation(redirectVia));