摘要:
using System; using System.Collections.Generic; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Htt 阅读全文
摘要:
using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; using System.Security.Cryptography; using System.Text; using Sy... 阅读全文
摘要:
using RabbitMQ.Client; using System; using System.Text; using System.Threading; namespace SampleStack.RabbitMQ.Producer { class Program { static void Main(string[] args) { ... 阅读全文
摘要:
using Quartz; using Quartz.Impl; using System; using System.Threading.Tasks; namespace WorkSample.Quartz { class Program { static void Main(string[] args) { ScheduleJobs().GetAwaiter().GetResult(); } 阅读全文
摘要:
using Newtonsoft.Json; using StackExchange.Redis; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Lin... 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; namespace Validation // include rules in the domain that may vary from instance to instance { class Program { stati... 阅读全文
摘要:
public class MyException : Exception { public MyException(string message) : base(message) { } public MyException(string message, Exception innerException) : b... 阅读全文
摘要:
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public class SortableAttribute : Attribute { public string EntityName { get; set; } public bool Default { get; set; } } p... 阅读全文
摘要:
using Microsoft.AspNetCore; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Builder;... 阅读全文