Skip to content
This repository was archived by the owner on Jun 26, 2021. It is now read-only.

KartAPI DownloadMetadata

Plorence edited this page Nov 10, 2020 · 1 revision

void DownloadMetadata(string)

참고: 정적 메서드

메타데이터 압축 파일을 다운로드합니다.

  • 첫 번째 인수로 메타데이터 압축파일을 저장할 경로를 전달하면 됩니다. (파일이름과 확장자 포함)

반환값

없음

예시

using Kartrider.API;
using Kartrider.API.Model;
using System;
namespace test
{
    class Program
    {
        static void Main(string[] args)
        {
            KartAPI.DownloadMetadata("metadata.zip"); //프로그램을 실행한 경로에 저장
        }
    }
}

Clone this wiki locally