Share via


EntitySetConfiguration<TEntityType>.HasFeedSelfLink Method

 

Namespace:   System.Web.OData.Builder
Assembly:  System.Web.OData (in System.Web.OData.dll)

Overload List

Name Description
System_CAPS_pubmethod HasFeedSelfLink(Func<FeedContext, String>)

Adds a self link to the feed.

System_CAPS_pubmethod HasFeedSelfLink(Func<FeedContext, Uri>)

Adds a self link to the feed.

See Also

EntitySetConfiguration<TEntityType> Class
System.Web.OData.Builder Namespace

Return to top

Adds a self link to the feed.

Syntax

public virtual void HasFeedSelfLink(
    Func<FeedContext, string> feedSelfLinkFactory
)
public:
virtual void HasFeedSelfLink(
    Func<FeedContext^, String^>^ feedSelfLinkFactory
)
abstract HasFeedSelfLink : 
        feedSelfLinkFactory:Func<FeedContext, string> -> unit
override HasFeedSelfLink : 
        feedSelfLinkFactory:Func<FeedContext, string> -> unit
Public Overridable Sub HasFeedSelfLink (
    feedSelfLinkFactory As Func(Of FeedContext, String)
)

Parameters

Return to top

Adds a self link to the feed.

Syntax

public virtual void HasFeedSelfLink(
    Func<FeedContext, Uri> feedSelfLinkFactory
)
public:
virtual void HasFeedSelfLink(
    Func<FeedContext^, Uri^>^ feedSelfLinkFactory
)
abstract HasFeedSelfLink : 
        feedSelfLinkFactory:Func<FeedContext, Uri> -> unit
override HasFeedSelfLink : 
        feedSelfLinkFactory:Func<FeedContext, Uri> -> unit
Public Overridable Sub HasFeedSelfLink (
    feedSelfLinkFactory As Func(Of FeedContext, Uri)
)

Parameters

Return to top