Example #1
0
 internal UriRedirectActionProperties(UriRedirectActionType actionType, RedirectType redirectType, DestinationProtocol?destinationProtocol, string customPath, string customHostname, string customQueryString, string customFragment)
 {
     ActionType          = actionType;
     RedirectType        = redirectType;
     DestinationProtocol = destinationProtocol;
     CustomPath          = customPath;
     CustomHostname      = customHostname;
     CustomQueryString   = customQueryString;
     CustomFragment      = customFragment;
 }
 internal UriRedirectActionDefinition(UriRedirectActionType typeDefinition, RedirectType redirectType, DestinationProtocol?destinationProtocol, string customPath, string customHostname, string customQueryString, string customFragment)
 {
     TypeDefinition      = typeDefinition;
     RedirectType        = redirectType;
     DestinationProtocol = destinationProtocol;
     CustomPath          = customPath;
     CustomHostname      = customHostname;
     CustomQueryString   = customQueryString;
     CustomFragment      = customFragment;
 }
Example #3
0
 public UriRedirectActionProperties(UriRedirectActionType actionType, RedirectType redirectType)
 {
     ActionType   = actionType;
     RedirectType = redirectType;
 }
 public UriRedirectActionDefinition(UriRedirectActionType typeDefinition, RedirectType redirectType)
 {
     TypeDefinition = typeDefinition;
     RedirectType   = redirectType;
 }