1 instantiation of AspireValueData
Aspire.TypeSystem (1)
AttributeDataReader.cs (1)
314
return new
AspireValueData
13 references to AspireValueData
Aspire.Hosting.RemoteHost (4)
AtsCapabilityScanner.cs (4)
1183
var
valueAttr = AttributeDataReader.GetAspireValueData(field);
1212
var
valueAttr = AttributeDataReader.GetAspireValueData(property);
1249
AspireValueData
valueAttr,
1374
private static IReadOnlyList<string> BuildExportedValuePath(Type declaringType,
AspireValueData
valueAttr, string memberName)
Aspire.TypeSystem (9)
AttributeDataReader.cs (9)
79
/// Gets <see cref="
AspireValueData
"/> from the specified <paramref name="field"/>, if present.
81
public static
AspireValueData
? GetAspireValueData(FieldInfo field)
82
=> FindSingleAttribute<
AspireValueData
>(field.GetCustomAttributesData(), AspireValueAttributeFullName, ParseAspireValueData);
85
/// Gets <see cref="
AspireValueData
"/> from the specified <paramref name="property"/>, if present.
87
public static
AspireValueData
? GetAspireValueData(PropertyInfo property)
88
=> FindSingleAttribute<
AspireValueData
>(property.GetCustomAttributesData(), AspireValueAttributeFullName, ParseAspireValueData);
289
private static
AspireValueData
ParseAspireValueData(CustomAttributeData data)
305
case nameof(
AspireValueData
.Name):
308
case nameof(
AspireValueData
.CatalogName):