AttributeRouteModel.CombineAttributeRouteModel Method

Definition

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

Returns

A new instance of AttributeRouteModel that represents the combination of the two AttributeRouteModel instances or null if both parameters are null.

Applies to