Falcor.Server.Routing.FalcorRequest.Get C# (CSharp) Method

Get() public static method

public static Get ( ) : FalcorRequest
return FalcorRequest
        public static FalcorRequest Get(params FalcorPath[] paths) => new FalcorRequest(FalcorMethod.Get, paths);
        public static FalcorRequest Get(params KeySegment[] keys) => Get(FalcorPath.Create(keys));