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}");
}
Reference
이 문제에 관하여(DTDL 파서 확장), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ridomin/dtdl-parser-extensions-5b56텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)