4 instantiations of RedirectionType
System.ServiceModel (4)
System\ServiceModel\Channels\RedirectionType.cs (4)
14static RedirectionType cache = new RedirectionType(InternalRedirectionType.Cache); 15static RedirectionType resource = new RedirectionType(InternalRedirectionType.Resource); 16static RedirectionType useIntermediary = new RedirectionType(InternalRedirectionType.UseIntermediary); 126return new RedirectionType(type, ns);
28 references to RedirectionType
System.ServiceModel (27)
System\ServiceModel\Channels\RedirectionException.cs (15)
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) 57if (type.InternalType == RedirectionType.InternalRedirectionType.UseIntermediary 58|| type.InternalType == RedirectionType.InternalRedirectionType.Resource) 70if (type.InternalType == RedirectionType.InternalRedirectionType.Cache && locations != null && locations.Length > 0) 93this.Type = (RedirectionType)info.GetValue("Type", typeof(RedirectionType)); 108info.AddValue("Type", this.Type, typeof(RedirectionType)); 117public RedirectionType Type { get; private set; } 145static string GetDefaultMessage(RedirectionType type, RedirectionLocation[] locations) 151if (type.InternalType == RedirectionType.InternalRedirectionType.Cache) 155else if (type.InternalType == RedirectionType.InternalRedirectionType.Resource) 159else if (type.InternalType == RedirectionType.InternalRedirectionType.UseIntermediary)
System\ServiceModel\Channels\RedirectionType.cs (12)
14static RedirectionType cache = new RedirectionType(InternalRedirectionType.Cache); 15static RedirectionType resource = new RedirectionType(InternalRedirectionType.Resource); 16static RedirectionType useIntermediary = new RedirectionType(InternalRedirectionType.UseIntermediary); 64public static RedirectionType Cache { get { return cache; } } 66public static RedirectionType Resource { get { return resource; } } 67public static RedirectionType UseIntermediary { get { return useIntermediary; } } 85public static bool operator !=(RedirectionType left, RedirectionType right) 90public static bool operator ==(RedirectionType left, RedirectionType right) 114public static RedirectionType Create(string type, string ns) 135result = ((obj as RedirectionType) == this);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (1)
864redirectionException = new RedirectionException(RedirectionType.Resource, RedirectionDuration.Permanent,