TESVSnip.Domain.Model.Record.GetLink C# (CSharp) Method

GetLink() public method

Generate hyperlink for a given identifier of form [plugin]@[type]:[recid]
public GetLink ( ) : string
return string
        public string GetLink()
        {
            var p = this.GetPlugin();

            // uint pidx = value >> 24;
            if (p != null)
            {
                return string.Format("{0}@{1}:{2:X8}", p.Name, Name, this.FormID);
            }

            return string.Format("{0}:{1:X8}", Name, this.FormID);
        }