GroupMeGroupFactory CreateGroup Method CkSoftware GroupMe SDK - Documentation
Creates a new group with the given options.

Namespace: CkSoftware.GroupMe.Sdk.Groups
Assembly: CkSoftware.GroupMe.Sdk.Groups (in CkSoftware.GroupMe.Sdk.Groups.dll) Version: 1.0.1.35398 (1.0.1.0)
Syntax

public Task<GroupMeGroup> CreateGroup(
	string groupName,
	string description = "",
	PictureData groupImage = null,
	bool openForSharing = false
)

Parameters

groupName
Type: System String
The name of the new group.
description (Optional)
Type: System String
The description of the new group.
groupImage (Optional)
Type: CkSoftware.GroupMe.Sdk.Core.Dao PictureData
The group-avatar image.
openForSharing (Optional)
Type: System Boolean
Defines if this group should be open for sharing / free to join.

Return Value

Type: Task GroupMeGroup 
An awaitable Task resulting in a GroupMeGroup instance.
Exceptions

ExceptionCondition
ArgumentNullExceptionOccurs if the group name is null or an empty string.
See Also