HttpMethod.Parse(ReadOnlySpan<Char>) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제공된 method
HttpMethod 를 instance 구문 분석합니다.
public:
static System::Net::Http::HttpMethod ^ Parse(ReadOnlySpan<char> method);
public static System.Net.Http.HttpMethod Parse (ReadOnlySpan<char> method);
static member Parse : ReadOnlySpan<char> -> System.Net.Http.HttpMethod
Public Shared Function Parse (method As ReadOnlySpan(Of Char)) As HttpMethod
매개 변수
- method
- ReadOnlySpan<Char>
구문 분석할 메서드입니다.
반환
HttpMethod 제공된 method
에 대한 instance.
설명
이 메서드는 알려진 메서드에 대해 싱글톤 instance 반환할 수 있습니다. 예를 들어 "GET"이 지정된 경우 를 반환 Get 할 수 있습니다. 구문 분석이 대/소문자를 구분하지 않는 방식으로 수행되므로 "get"이 지정된 경우에도 반환 Get 될 수 있습니다. 알 수 없는 메서드의 경우 생성자가 수행하는 것과 동일한 유효성 검사를 사용하여 새 HttpMethod instance 반환됩니다HttpMethod(String).
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET