共用方式為


MediaTypeHeaderValue.MatchesMediaType(StringSegment) 方法

定義

取得值,指出是否 otherMediaType 為型別/subType 的這個 MediaTypeHeaderValue 子集。 「子集」會根據 14.1 節:Accept 中所述 https://www.ietf.org/rfc/rfc2068.txt 的優先順序,定義為相同或更特定的媒體類型。

public bool MatchesMediaType (Microsoft.Extensions.Primitives.StringSegment otherMediaType);
member this.MatchesMediaType : Microsoft.Extensions.Primitives.StringSegment -> bool
Public Function MatchesMediaType (otherMediaType As StringSegment) As Boolean

參數

otherMediaType
StringSegment

要比較的 StringSegment

傳回

值,指出是否 otherMediaType 為這個 MediaTypeHeaderValue 的子集。

備註

例如,「multipart/mixed」 是 「multipart/mixed」、「multipart/*」 和 「*/*」 的子集,但不是 「multipart/message」。

適用於