Amount of currency that is used as a hosting fee of the portal

Namespace: DotNetNuke.Entities.Portals
Assembly: 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 fee

Return Value

Currency amount hosting fee

Remarks

Examples

This show the Portal HostFeeusage
 Copy imageCopy Code
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

See Also