gpt4 book ai didi

powershell - 如何在PowerShell中读取ATOM XML

转载 作者:行者123 更新时间:2023-12-03 00:40:07 24 4
gpt4 key购买 nike

如何从PowerShell调用System.ServiceModel.Syndication.SyndicationFeed?

我试图从Powershell中读取RSS feed,并且需要遍历feed,我想知道这样做的方式是什么?

我找不到任何例子。

提前致谢!!
拉玛尼

最佳答案

这是我在几秒钟内想到的:

$url = "http://stackoverflow.com/feeds/question/10589059"
[System.Reflection.Assembly]::LoadWithPartialName("System.ServiceModel") | Out-Null
[System.ServiceModel.Syndication.SyndicationFeed] $feed = [System.ServiceModel.Syndication.SyndicationFeed]::Load([System.Xml.XmlReader]::Create($url))
$feed | Get-Member

关于powershell - 如何在PowerShell中读取ATOM XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10589059/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com