本文整理汇总了C#中System.ComponentModel.Composition.Primitives.ImportDefinition.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# ImportDefinition.ToString方法的具体用法?C# ImportDefinition.ToString怎么用?C# ImportDefinition.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.ComponentModel.Composition.Primitives.ImportDefinition
的用法示例。
在下文中一共展示了ImportDefinition.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetExports
/// <summary>
/// Returns all exports that match the conditions of the specified import.
/// </summary>
/// <param name="definition">
/// The <see cref="ImportDefinition"/> that defines the conditions of the
/// <see cref="Export"/> objects to get.
/// </param>
/// <result>
/// An <see cref="IEnumerable{T}"/> of <see cref="Export"/> objects that match
/// the conditions defined by <see cref="ImportDefinition"/>, if found; otherwise, an
/// empty <see cref="IEnumerable{T}"/>.
/// </result>
/// <exception cref="ArgumentNullException">
/// <paramref name="definition"/> is <see langword="null"/>.
/// </exception>
/// <exception cref="ImportCardinalityMismatchException">
/// <para>
/// <see cref="ImportDefinition.Cardinality"/> is <see cref="ImportCardinality.ExactlyOne"/> and
/// there are zero <see cref="Export"/> objects that match the conditions of the specified
/// <see cref="ImportDefinition"/>.
/// </para>
/// -or-
/// <para>
/// <see cref="ImportDefinition.Cardinality"/> is <see cref="ImportCardinality.ZeroOrOne"/> or
/// <see cref="ImportCardinality.ExactlyOne"/> and there are more than one <see cref="Export"/>
/// objects that match the conditions of the specified <see cref="ImportDefinition"/>.
/// </para>
/// </exception>
public IEnumerable<Export> GetExports(ImportDefinition definition, AtomicComposition atomicComposition)
{
Requires.NotNull(definition, "definition");
Contract.Ensures(Contract.Result<IEnumerable<Export>>() != null);
IEnumerable<Export> exports;
ExportCardinalityCheckResult result = this.TryGetExportsCore(definition, atomicComposition, out exports);
switch(result)
{
case ExportCardinalityCheckResult.Match:
return exports;
case ExportCardinalityCheckResult.NoExports:
throw new ImportCardinalityMismatchException(string.Format(CultureInfo.CurrentCulture, Strings.CardinalityMismatch_NoExports, definition.ToString()));
default:
Assumes.IsTrue(result == ExportCardinalityCheckResult.TooManyExports);
throw new ImportCardinalityMismatchException(string.Format(CultureInfo.CurrentCulture, Strings.CardinalityMismatch_TooManyExports, definition.ToString()));
}
}
示例2: DumpImport
private void DumpImport(ComposablePartDefinition part, ImportDefinition i)
{
Dump(" Import: " + i.ToString());
}
示例3: ToString_ValueAsConstraintArgument_ShouldReturnConstraintProperty
public void ToString_ValueAsConstraintArgument_ShouldReturnConstraintProperty()
{
var expectations = new ExpectationCollection<Expression<Func<ExportDefinition, bool>>, string>();
expectations.Add(d => d.ContractName == "ContractName", @"d.ContractName ==? ""ContractName""");
expectations.Add(d => d.ContractName.Equals("ContractName"), @"d.ContractName.Equals\(""ContractName""\)");
expectations.Add(d => (string)d.Metadata["Name"] == "Value", @"Convert\(d.Metadata.get_Item\(""Name""\)\) ==? ""Value""");
expectations.Add(d => true, "True");
foreach (var e in expectations)
{
var item = new ImportDefinition(e.Input, "", ImportCardinality.ExactlyOne, false, false);
Assert.IsTrue(Regex.IsMatch(item.ToString(), e.Output));
}
}