Gets or sets the default behavior of chat rooms in this category for allowing file uploads. This value will be used to set the initial value of any chat room created in this category. Each chat room manager can choose to inherit the category value, or override it for that specific chat room.

Namespace:  Microsoft.Rtc.Collaboration.GroupChat.Management
Assembly:  Microsoft.Rtc.Collaboration.GroupChat(in Microsoft.Rtc.Collaboration.GroupChat.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
AllowFileUpload 
As 
Nullable(
Of 
Boolean)
	
Get
	
Set
Visual Basic (Usage)
Dim 
instance 
As 

ChatRoomCategoryInformation
Dim 
value 
As 
Nullable(
Of 
Boolean)

value = instance.
AllowFileUpload

instance.
AllowFileUpload = 
value
C#
public 
Nullable<
bool> 
AllowFileUpload { 
get; 
set; }

Property Value

Type: System . . :: . . Nullable < (Of < ( <' Boolean > ) > ) >

true if file uploads should be permitted in chat rooms; false if file uploads should be restricted; or null if this value should be inherited from the parent category. (default)

See Also