DTDL 파서 확장

3654 단어 azuremqttiot
DTDL dotnet 파서는 원격 측정, 속성, 명령, 구성 요소 및 관계와 같은 DTDL 요소를 검사하기 위한 객체 모델을 제공합니다.

이들 모두는 캐스팅을 사용하여 적절한 DTEntityInfo 유형과 함께 사용해야 하는 DT* 요소로 표현됩니다.

이러한 형식을 보다 쉽게 ​​탐색할 수 있도록 일부 C# 장점을 사용하여 이 DTDL 파서 C# 확장을 만들었습니다.




다음과 같이 사용할 수 있습니다.




var model = await new ModelParser().ParseAsync(ReadFile("dtmi/samples/aninterface-1.json"));

Console.WriteLine(model.Id);

foreach (var t in model.Telemetries)
{
    Console.WriteLine($" [T] {t.Name} {t.Schema.Id}");
}

foreach (var p in model.Properties)
{
    Console.WriteLine($" [P] {p.Name} {p.Schema.Id}");
}

foreach (var c in model.Commands)
{
    Console.WriteLine($" [C] {c.Name} {c.Request.Id} {c.Response.Id}");
}

좋은 웹페이지 즐겨찾기