Click or drag to resize

WebPosting Class

Represents a NetFORUM Web Posting
Inheritance Hierarchy
SystemObject
  Ignition.Framework.EntitiesNetForumEntity
    Ignition.CommunicationWebPosting

Namespace: Ignition.Communication
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntax
[NetForumBusinessObjectAttribute("Web Posting")]
public class WebPosting : NetForumEntity

The WebPosting type exposes the following members.

Constructors
 NameDescription
Public methodWebPostingInitializes a new instance of the WebPosting class
Top
Properties
 NameDescription
Public propertyApprovalDate 
Public propertyAuthor 
Public propertyCategoryObsolete.
Public propertyCategoryId 
Public propertyGroupObsolete.
Public propertyGroupId 
Public propertyHtmlDescription 
Public propertyId Primary key of the NetFORUM entity.
(Inherited from NetForumEntity)
Public propertyIsActive 
Public propertyIsApproved 
Public propertyMessageObsolete.
Public propertyOrder 
Public propertyPostDate 
Public propertyRemoveDate 
Public propertyRevisionInformation
(Inherited from NetForumEntity)
Public propertyShortDescription 
Public propertyTitle 
Public propertyWebsiteObsolete.
Public propertyWebsiteId 
Top
Methods
 NameDescription
Public methodCastToCustomEntityTEntity Safely cast this entity to a custom user-defined type, as configured via the current CustomEntityRegistrar.
(Inherited from NetForumEntity)
Top
Example
In baseline eWeb, there are multiple instances of retrieving Web Postings with the following criteria, and these criteria inform our decisions about the Approved property and IsActive method:
C#
where
    wps_approval_date is not NULL
    and wps_post_date is not NULL
    and wps_post_date <= getdate()
    and (wps_remove_date >= getdate() or wps_remove_date is NULL)
See Also