Basic Authentication (기본인증) ㆍ앞에서 살펴본 Middleware , Attribute 를 사용하는 웹API 은 인증 방식과 더불어, Base Authenticaion 또한 요청헤더에 정보를 보내고, 서버로 부터 Authorization…
Custom Middleware 를 이용한 WebAPI 인증(Authentication) ㆍ사용자 Middleware 작성하기 next(RequestDelegate) , Invoke(InvokeAsync) , await next(context) 1) 생성자를 통해 next 객체 주입받고 , 처리 완료 후…
Custom Attribute 를 이용한 WebAPI 인증 <서버 Side> ㆍ인증에 필요한 클래스 , 메서드등에 Attribute 를 사용하여, 사용전 인증을 거친 클라이언트만 접근 가능하도록 한다. ㆍAttribute 에서…
Custom Attribute 작성하기 ㆍAttribute 클래스 상속 받는다. ㆍAttributeUsage 클래스로 attribute 가 사용될 속성 들을 정의한다. (사용범위 및 Inherited , AllowMultiple) ㆍAttributeUsage(옵션)의 옵션에서 AttributeTarget 열거형으로 attribute…
[ export 할 name 에 직접 할당할 경우 ] export const MyObject = ‘객체 , 값’ MyObject 자체가 전역 함수/변수처럼 사용되어, App.js 에서 import 해서…
렌더 함수 밖에서작성된 styled-components 로 동적으로 변경되는상태를 props 로 전달하기 import React from ‘react’ import styled from ‘styled-components’ const Head = styled.div` display:flex;…
ㆍ의존성 주입 서비스등록 services.AddSingleton <인터페이스, 구현클래스>(); 처음 요청 시, 생성되고 이 후 요청 시, 동일한 instance를 사용한다. 새로운 접속자가 접속해도 현재…