Malt.Reporting.OpenDocument.OdfTemplate.GetEntryInputStream C# (CSharp) 메소드

GetEntryInputStream() 공개 메소드

public GetEntryInputStream ( string entryPath ) : Stream
entryPath string
리턴 Stream
        public override Stream GetEntryInputStream(string entryPath)
        {
            if (string.IsNullOrEmpty(entryPath))
            {
                throw new ArgumentNullException("entryPath");
            }

            var data = this.entries[entryPath];
            return new MemoryStream(data);
        }