This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
| # Starter pipeline | |
| # Start with a minimal pipeline that you can customize to build and deploy your code. | |
| # Add steps that build, run tests, deploy, and more: | |
| # https://aka.ms/yaml | |
| trigger: | |
| - master | |
| pool: | |
| vmImage: 'ubuntu-latest' |
| public static partial class LinqExtensions | |
| { | |
| public static Maybe<C> SelectMany<A, B, C>(this Maybe<A> ma, Func<A, Maybe<B>> f, Func<A, B, C> select) => ma.Bind(a => f(a).Map(b => select(a, b))); | |
| } |
| namespace System.Collections.ObjectModel | |
| { | |
| // Licensed to the .NET Foundation under one or more agreements. | |
| // The .NET Foundation licenses this file to you under the MIT license. | |
| // See the LICENSE file in the project root for more information. | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.ComponentModel; | |
| using System.Diagnostics; |
| using FluentAssertions; | |
| using MediatR; | |
| using NUnit.Framework; | |
| using StructureMap.Graph; | |
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Security.Cryptography.X509Certificates; | |
| using StructureMap; | |
| using StructureMap.Graph.Scanning; |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include "../fpdfsdk/include/fpdfview.h" | |
| #include "../fpdfsdk/include/fpdfsave.h" | |
| /* | |
| author:Steven Lee |
| public static FileStream OpenFileWithRetry(string path, FileMode mode, FileAccess fileAccess, FileShare fileShare) | |
| { | |
| ArgumentsChecker.ArgumentNotNull(path, "path"); | |
| var autoResetEvent = new AutoResetEvent(false); | |
| while (true) | |
| { | |
| try | |
| { |