| Post Constructor |
This is preliminary documentation and is subject to change.
Initializes a new instance of
Post.
Namespace: WikiClientLibrary.Wikia.DiscussionsAssembly: WikiClientLibrary.Wikia (in WikiClientLibrary.Wikia.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public Post(
WikiaSite site,
WikiPageStub ownerPage,
long id
)
Public Sub New (
site As WikiaSite,
ownerPage As WikiPageStub,
id As Long
)
Dim site As WikiaSite
Dim ownerPage As WikiPageStub
Dim id As Long
Dim instance As New Post(site, ownerPage,
id)
public:
Post(
WikiaSite^ site,
WikiPageStub ownerPage,
long long id
)
new :
site : WikiaSite *
ownerPage : WikiPageStub *
id : int64 -> Post
Parameters
- site WikiaSite
- The Wikia site.
- ownerPage WikiPageStub
- Stub of the page/board that owns the post.
- id Int64
- ID of the post.
Exceptions Remarks
For now, it is not possible to get the replies by using the constructor provided here.
To achieve this, you need to invoke
EnumPostsAsync on a
Board instance.
See Also