Bloom.Api.PretendRequestInfo.ReplyWithFileContent C# (CSharp) Méthode

ReplyWithFileContent() public méthode

public ReplyWithFileContent ( string path ) : void
path string
Résultat void
        public void ReplyWithFileContent(string path)
        {
            ReplyImagePath = path;
            WriteCompleteOutput(RobustFile.ReadAllText(path));
            HaveOutput = true;
        }