IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

Redirect Event

Fired when a redirection is received from the server.

Syntax

[VB.NET]
Public Event OnRedirect As OnRedirectHandler
[C#]
public event OnRedirectHandler OnRedirect;

public delegate void OnRedirectHandler(object sender, SoapRedirectEventArgs e);

class SoapRedirectEventArgs : EventArgs {
  string Location {get;}
  bool Accept {get; set;}
}

Remarks

This event is where the client can decide whether to continue with the redirection process or not. The Accept parameter is always true by default, but if you do not want to follow the redirection, Accept may be set to false, in which case the component throws an exception. Location is the location to which the client is being redirected. Further control over redirection is provided in the FollowRedirects property.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]