Class UpdateRequest

Inheritance
System.Object
UpdateRequest
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.Social.Ratings.Rest.Contracts
Assembly: EPiServer.Social.Ratings.Rest.Contracts.dll
Version: 1.5.4
Syntax
public class UpdateRequest

Constructors

UpdateRequest(Nullable<Int32>, Nullable<Int32>, ExtensionRequest)

Declaration
public UpdateRequest(int? currentValue = default(int? ), int? newValue = default(int? ), ExtensionRequest extension = null)
Parameters
Type Name Description
System.Nullable<System.Int32> currentValue
System.Nullable<System.Int32> newValue
ExtensionRequest extension

Properties

CurrentValue

Declaration
public int? CurrentValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Extension

Declaration
public ExtensionRequest Extension { get; set; }
Property Value
Type Description
ExtensionRequest

NewValue

Declaration
public int? NewValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
arrow_upward