Parses multipart/form-data uploads and stream files to a blob-store.
After uploading the Services receives a json-body with the file references:
{
"files": [
{
"key": "34525ca2-f774-444f-8e7e-7622bef69cb1",
"filename": "13.jpg",
Parses multipart/form-data uploads and stream files to a blob-store.
After uploading the Services receives a json-body with the file references:
{
"files": [
{
"key": "34525ca2-f774-444f-8e7e-7622bef69cb1",
"filename": "13.jpg",
| public class DataflowTestPipeline | |
| { | |
| public TransformBlock<Thing, Thing> MainBlock { get; set; } | |
| public TransformBlock<Thing, Thing> Block1 { get; set; } | |
| public TransformBlock<Thing, Thing> Block2 { get; set; } | |
| public TransformBlock<Thing, Thing> Block3 { get; set; } | |
| public ActionBlock<Thing> EndBlock { get; set; } | |
| public void CreatePipelineSynchronousWithLinkOptions() | |
| { |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |