You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets all attributes for <typeparamref name="TResource" /> that are targeted by the selector. If no selector is provided, all exposed fields are
30
+
/// Gets all attributes for <typeparamref name="TResource" /> that are targeted by the selector. If no selector is provided, all exposed attributes are
31
31
/// returned.
32
32
/// </summary>
33
33
/// <typeparam name="TResource">
34
-
/// The resource for which to retrieve attributes.
34
+
/// The resource type for which to retrieve attributes.
35
35
/// </typeparam>
36
36
/// <param name="selector">
37
-
/// Should be of the form: (TResource e) => new { e.Attribute1, e.Attribute2 }
37
+
/// Should be of the form: (TResource r) => new { r.Attribute1, r.Attribute2 }
/// Gets all relationships for <typeparamref name="TResource" /> that are targeted by the selector. If no selector is provided, all exposed fields are
44
-
/// returned.
43
+
/// Gets all relationships for <typeparamref name="TResource" /> that are targeted by the selector. If no selector is provided, all exposed relationships
44
+
/// are returned.
45
45
/// </summary>
46
46
/// <typeparam name="TResource">
47
-
/// The resource for which to retrieve relationships.
47
+
/// The resource type for which to retrieve relationships.
48
48
/// </typeparam>
49
49
/// <param name="selector">
50
-
/// Should be of the form: (TResource e) => new { e.Relationship1, e.Relationship2 }
50
+
/// Should be of the form: (TResource r) => new { r.Relationship1, r.Relationship2 }
/// Sets the attributes that will be included in the serialized request body. You can use <see cref="IResourceGraph.GetAttributes{TResource}" /> to
17
-
/// conveniently access the desired <see cref="AttrAttribute" /> instances.
16
+
/// Sets the attributes that will be included in the serialized request body. You can use <see cref="IResourceContextProvider.GetResourceContext{T}()" />
17
+
/// to conveniently access the desired <see cref="AttrAttribute" /> instances.
0 commit comments