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