Authorized property: Feed class
Description
This property returns a Boolean value indicating whether the current user is authorized to view the feed definition.
This property is read-only.
Example
import PTFP_FEED:FeedFactory;
import PTFP_FEED:Feed;
Local boolean &succeed;
Local PTFP_FEED:FeedFactory &thisFeedFactory = create PTFP_FEED:FeedFactory();
Local PTFP_FEED:Feed &thisFeed = &thisFeedFactory.getFeed("feed_ID", ⇒
&thisFeedFactory.Utility.OPERATINGMODE_DELETION);
If &thisFeed <> Null And
&thisFeed.Authorized Then
&succeed = &thisFeed.delete();
End-If;