AttributeRouteModel.CombineAttributeRouteModel Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Combines two AttributeRouteModel instances and returns a new AttributeRouteModel instance with the result.
public:
static Microsoft::AspNetCore::Mvc::ApplicationModels::AttributeRouteModel ^ CombineAttributeRouteModel(Microsoft::AspNetCore::Mvc::ApplicationModels::AttributeRouteModel ^ left, Microsoft::AspNetCore::Mvc::ApplicationModels::AttributeRouteModel ^ right);
public static Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel CombineAttributeRouteModel (Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel left, Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel right);
public static Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel? CombineAttributeRouteModel (Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel? left, Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel? right);
static member CombineAttributeRouteModel : Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel * Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel -> Microsoft.AspNetCore.Mvc.ApplicationModels.AttributeRouteModel
Public Shared Function CombineAttributeRouteModel (left As AttributeRouteModel, right As AttributeRouteModel) As AttributeRouteModel
Parameters
- left
- AttributeRouteModel
The left AttributeRouteModel.
- right
- AttributeRouteModel
The right AttributeRouteModel.
Returns
A new instance of AttributeRouteModel that represents the
combination of the two AttributeRouteModel instances or null
if both
parameters are null
.