Microsoft.DocAsCode.Build.ManagedReference.BuildOutputs.ApiParameterBuildOutput.Expand C# (CSharp) Method

Expand() public method

public Expand ( ApiReferenceBuildOutput>.Dictionary references, string supportedLanguages ) : void
references ApiReferenceBuildOutput>.Dictionary
supportedLanguages string
return void
        public void Expand(Dictionary<string, ApiReferenceBuildOutput> references, string[] supportedLanguages)
        {
            if (_needExpand)
            {
                _needExpand = false;
                Type = ApiBuildOutputUtility.GetApiNames(Type?.Uid, references, supportedLanguages);
            }
        }
    }
ApiParameterBuildOutput