1
0
Fork 0
mirror of https://gitlab.com/sbrl/GalleryShare.git synced 2018-06-12 22:45:16 +00:00

Begin settings up file sending

This commit is contained in:
Starbeamrainbowlabs 2016-07-08 09:29:54 +01:00
parent d80338d4be
commit 6d3064b79f

View file

@ -201,6 +201,11 @@ namespace GalleryShare
byte[] xsltData = await Utilities.GetEmbeddedResourceContent(outputFileName); byte[] xsltData = await Utilities.GetEmbeddedResourceContent(outputFileName);
await cycle.Response.OutputStream.WriteAsync(xsltData, 0, xsltData.Length); await cycle.Response.OutputStream.WriteAsync(xsltData, 0, xsltData.Length);
} }
private async Task sendFile(string requestedPath)
{
}
} }
} }