This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
using System.Threading.Tasks; | |
using Goplay.Id.Models; | |
using Microsoft.AspNetCore.Identity; | |
namespace YOURNAMESPAZE | |
{ | |
public class FourDigitTokenProvider: PhoneNumberTokenProvider<ApplicationUser> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.Diagnostics; | |
using System.IdentityModel.Protocols.WSTrust; | |
using System.IdentityModel.Tokens; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Security.Claims; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
{ |