Class UserSubscriptionInfo
wrapper class to hold data about subscription status for a specific page.
Inheritance
System.Object
UserSubscriptionInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Web.WebControls
Assembly: EPiServer.Cms.AspNet.dll
Version: 11.20.7Syntax
public class UserSubscriptionInfo
Properties
ID
Gets the ID fo the page
Declaration
public int ID { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The ID. |
Page
The page that is subscribed for
Declaration
public PageData Page { get; }
Property Value
Type | Description |
---|---|
PageData | The page. |
PageName
Gets the name of the page.
Declaration
public string PageName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the page. |
Subscribed
Gets or sets a value indicating whether the page associated with this instance is subscribed for.
Declaration
public bool Subscribed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|