本文整理汇总了C#中System.Net.Http.Headers.MediaTypeHeaderValue.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# MediaTypeHeaderValue.Clone方法的具体用法?C# MediaTypeHeaderValue.Clone怎么用?C# MediaTypeHeaderValue.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.Http.Headers.MediaTypeHeaderValue
的用法示例。
在下文中一共展示了MediaTypeHeaderValue.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MediaTypeMatch
/// <summary>
/// Initializes a new instance of the <see cref="MediaTypeMatch"/> class.
/// </summary>
/// <param name="mediaType">The media type that has matched. A <c>null</c> value is allowed.</param>
/// <param name="quality">The quality of the match.</param>
public MediaTypeMatch(MediaTypeHeaderValue mediaType, double quality)
{
Contract.Assert(quality >= 0 && quality <= 1.0, "Quality must be from 0.0 to 1.0, inclusive.");
// We always clone the media type because it is mutable and we do not want the original source modified.
MediaType = mediaType == null ? null : mediaType.Clone();
Quality = quality;
}
示例2: MediaTypeFormatterMatch
/// <summary>
/// Initializes a new instance of the <see cref="MediaTypeFormatterMatch"/> class.
/// </summary>
/// <param name="formatter">The matching formatter.</param>
/// <param name="mediaType">The media type. Can be <c>null</c> in which case the media type <c>application/octet-stream</c> is used.</param>
/// <param name="quality">The quality of the match. Can be <c>null</c> in which case it is considered a full match with a value of 1.0</param>
/// <param name="ranking">The kind of match.</param>
public MediaTypeFormatterMatch(MediaTypeFormatter formatter, MediaTypeHeaderValue mediaType, double? quality, MediaTypeFormatterMatchRanking ranking)
{
if (formatter == null)
{
throw Error.ArgumentNull("formatter");
}
this.Formatter = formatter;
this.MediaType = mediaType != null ? mediaType.Clone() : MediaTypeConstants.ApplicationOctetStreamMediaType;
this.Quality = quality ?? FormattingUtilities.Match;
this.Ranking = ranking;
}