Table of Contents

Class ImagePattern

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll

Represents the image pattern.

[DataContract]
[Serializable]
public class ImagePattern
Inheritance
ImagePattern
Inherited Members

Constructors

ImagePattern()

Initializes a new instance of the class.

public ImagePattern()

ImagePattern(string, string, string)

Initializes a new instance of the class.

public ImagePattern(string type, string name, string value)

Parameters

type string

The type.

name string

The name.

value string

The value.

Properties

IsDefault

Gets or sets the pattern.

[DataMember(Name = "isdefault")]
public bool IsDefault { get; set; }

Property Value

bool

Name

Gets or sets the name.

[DataMember(Name = "name")]
public string Name { get; set; }

Property Value

string

TemplateTag

Gets the template tag.

public string TemplateTag { get; }

Property Value

string

Type

Gets or sets the type.

public string Type { get; set; }

Property Value

string

Value

Gets or sets the pattern.

[DataMember(Name = "pattern")]
public string Value { get; set; }

Property Value

string
To top