internal UrlRedirectActionParameters(UrlRedirectActionParametersOdataType odataType, RedirectType redirectType, DestinationProtocol?destinationProtocol, string customPath, string customHostname, string customQueryString, string customFragment)
 {
     OdataType           = odataType;
     RedirectType        = redirectType;
     DestinationProtocol = destinationProtocol;
     CustomPath          = customPath;
     CustomHostname      = customHostname;
     CustomQueryString   = customQueryString;
     CustomFragment      = customFragment;
 }
 public UrlRedirectActionParameters(UrlRedirectActionParametersOdataType odataType, RedirectType redirectType)
 {
     OdataType    = odataType;
     RedirectType = redirectType;
 }