Sage.Integration.Northwind.Feeds.SyncFeedEntryLink.CreateSelfLink C# (CSharp) Method

CreateSelfLink() public static method

public static CreateSelfLink ( string href ) : SyncFeedEntryLink
href string
return SyncFeedEntryLink
        public static SyncFeedEntryLink CreateSelfLink(string href)
        {
            SyncFeedEntryLink result = new SyncFeedEntryLink();
            result.Href = href;
            result.LinkRel = GetRelString(RelEnum.self);
            result.Title = "self";
            result.LinkType = GetTypeString(LinkTypeEnum.entry);
            return result;
        }