Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Posh
0.1.4
Types/Posh.RSS.Article/get_Name.ps1
<#
.SYNOPSIS
Gets an article's name
.DESCRIPTION
Gets the name of an article in an RSS feed.
#>
if
(
$this
.
Title
-isnot
[string]
)
{
$this
.
Title
.
InnerText
}
else
{
$this
.
Title
}