다음을 통해 공유


NSUrlSessionResponse 대리자

정의

다양한 백그라운드 작업을 위해 NSUrlSession에서 호출한 콜백에 대한 서명입니다.

public delegate void NSUrlSessionResponse(NSData data, NSUrlResponse response, NSError error);
type NSUrlSessionResponse = delegate of NSData * NSUrlResponse * NSError -> unit

매개 변수

data
NSData

받은 데이터입니다.

response
NSUrlResponse

응답을 나타내는 개체입니다.

error
NSError

오류 코드(있는 경우)

적용 대상