Amount of currency that is used as a hosting fee of the portal
Namespace: DotNetNuke.Entities.PortalsAssembly: DotNetNuke (in DotNetNuke.dll)
Syntax
C# |
---|
[XmlElementAttribute("hostfee")] public float HostFee { get; set; } |
Visual Basic |
---|
<XmlElementAttribute("hostfee")> Public Property HostFee As Single Get Set |
Field Value
Currency amount hosting feeReturn Value
Currency amount hosting fee
Remarks
Examples
This show the Portal HostFeeusage
![]() | |
---|---|
If Not Null.IsNull(objPortal.ExpiryDate) Then txtExpiryDate.Text = objPortal.ExpiryDate.ToShortDateString End If txtHostFee.Text = objPortal.HostFee.ToString txtHostSpace.Text = objPortal.HostSpace.ToString txtPageQuota.Text = objPortal.PageQuota.ToString txtUserQuota.Text = objPortal.UserQuota.ToString |