本文整理汇总了C#中WriteConcern.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# WriteConcern.ToString方法的具体用法?C# WriteConcern.ToString怎么用?C# WriteConcern.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WriteConcern
的用法示例。
在下文中一共展示了WriteConcern.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ToString_should_return_expected_result
public void ToString_should_return_expected_result(object w, int? wTimeoutSeconds, bool? fsync, bool? journal, string expectedResult)
{
var wValue = ToWValue(w);
var wTimeout = ToWTimeout(wTimeoutSeconds);
var subject = new WriteConcern(wValue, wTimeout, fsync, journal);
var result = subject.ToString();
result.Should().Be(expectedResult);
}
示例2: ToString_should_return_expected_value
public void ToString_should_return_expected_value(int? wCount, int? wTimeoutSeconds, bool? fsync, bool? journal, string expected)
{
var wTimeout = wTimeoutSeconds.HasValue ? (TimeSpan?)TimeSpan.FromSeconds(wTimeoutSeconds.Value) : null;
var writeConcern = new WriteConcern(wCount, wTimeout, fsync, journal);
writeConcern.ToString().Should().Be(expected);
}
示例3: ToString_should_return_expected_value
public void ToString_should_return_expected_value(object w, int? wTimeoutSeconds, bool? fsync, bool? journal, string expected)
{
WriteConcern.WValue parsedW;
if(w == null)
{
parsedW = null;
}
else if (w is int)
{
parsedW = new WriteConcern.WCount((int)w);
}
else
{
parsedW = new WriteConcern.WMode((string)w);
}
var wTimeout = wTimeoutSeconds.HasValue ? (TimeSpan?)TimeSpan.FromSeconds(wTimeoutSeconds.Value) : null;
var writeConcern = new WriteConcern(parsedW, wTimeout, fsync, journal);
writeConcern.ToString().Should().Be(expected);
}