Click or drag to resize

WikiFamilyGetSiteAsync Method

This is preliminary documentation and is subject to change.

Asynchronously gets a WikiSite instance from the specified family name. (Case-insensitive) This method will create the Site instance, if necessary; otherwise it will return the created one.

Namespace: WikiClientLibrary.Sites
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public Task<WikiSite?> GetSiteAsync(
	string prefix
)

Parameters

prefix  String
The member name in the family. Usually this is the interwiki prefix.

Return Value

TaskWikiSite
A site instance, or null if no site with the specified family name found..

Implements

IWikiFamilyGetSiteAsync(String)
Exceptions
ExceptionCondition
ArgumentNullExceptionprefix is null.
Remarks
The implementation should be thread-safe, if multiple threads are to use this instance with other classes.
See Also