Class GroupCreateMessage.Builder
A builder class for Group
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
public class Builder
Constructors
| Improve this Doc View SourceBuilder(String, String)
Create a new builder for Group
Declaration
public Builder(string name, string description)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | Group public name. |
System. |
description | Group's short description. |
Properties
| Improve this Doc View SourceDescription
Group's short description.
Declaration
public string Description { get; }
Property Value
Type | Description |
---|---|
System. |
EntryReputationLevel
Group's entry reputation level.
Declaration
public int? EntryReputationLevel { get; set; }
Property Value
Type | Description |
---|---|
System. |
IsDiscoverable
Is group publicly discoverable?
Declaration
public bool IsDiscoverable { get; set; }
Property Value
Type | Description |
---|---|
System. |
IsExtendedAdminEnabled
Is extended admin privilege enabled in this group?
Declaration
public bool IsExtendedAdminEnabled { get; set; }
Property Value
Type | Description |
---|---|
System. |
IsPeekable
Is message history visible even if user is not in the group?
Declaration
public bool IsPeekable { get; set; }
Property Value
Type | Description |
---|---|
System. |
Language
Language of the group.
Declaration
public WolfLanguage? Language { get; set; }
Property Value
Type | Description |
---|---|
System. |
LongDescription
Long description of the group.
Declaration
public string LongDescription { get; set; }
Property Value
Type | Description |
---|---|
System. |
Name
Group public name.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceBuild()
Build the Group
Declaration
public GroupCreateMessage Build()
Returns
Type | Description |
---|---|
Group |
A new Group |