Microsoft.DocAsCode.Dfm.DfmIncludeInlineToken.DfmIncludeInlineToken C# (CSharp) Méthode

DfmIncludeInlineToken() public méthode

public DfmIncludeInlineToken ( IMarkdownRule rule, IMarkdownContext context, string src, string name, string title, string raw, SourceInfo sourceInfo ) : Microsoft.DocAsCode.MarkdownLite
rule IMarkdownRule
context IMarkdownContext
src string
name string
title string
raw string
sourceInfo Microsoft.DocAsCode.MarkdownLite.SourceInfo
Résultat Microsoft.DocAsCode.MarkdownLite
        public DfmIncludeInlineToken(IMarkdownRule rule, IMarkdownContext context, string src, string name, string title, string raw, SourceInfo sourceInfo)
        {
            Rule = rule;
            Context = context;
            Src = src;
            Name = name;
            Title = title;
            Raw = raw;
            SourceInfo = sourceInfo;
        }
    }
DfmIncludeInlineToken