London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

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.dll
Version: 10.10.4
Syntax
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

true if subscribed; otherwise, false.

Extension Methods