C# 클래스 Sdl.Web.Common.Models.MvcData

Represents data about the Model, View and Controller
파일 보기 프로젝트 열기: sdl/dxa-web-application-dotnet 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines whether the specified object is equal to the current object.

GetHashCode ( ) : int

Serves as a hash function for a particular type.

MvcData ( ) : System

Initializes a new empty MvcData instance.

MvcData ( MvcData other ) : System

Initializes a new MvcData instance which is a copy of another.

MvcData ( string qualifiedViewName ) : System

Initializes a new MvcData instance for a given qualified View name.

ToString ( ) : string

Returns a string that represents the current object.

비공개 메소드들

메소드 설명
SafeHashCode ( object obj ) : int

메소드 상세

Equals() 공개 메소드

Determines whether the specified object is equal to the current object.
public Equals ( object obj ) : bool
obj object The object to compare with the current object.
리턴 bool

GetHashCode() 공개 메소드

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
리턴 int

MvcData() 공개 메소드

Initializes a new empty MvcData instance.
public MvcData ( ) : System
리턴 System

MvcData() 공개 메소드

Initializes a new MvcData instance which is a copy of another.
public MvcData ( MvcData other ) : System
other MvcData The other to copy.
리턴 System

MvcData() 공개 메소드

Initializes a new MvcData instance for a given qualified View name.
public MvcData ( string qualifiedViewName ) : System
qualifiedViewName string The qualified View name with format AreaName:ControllerName:ViewName.
리턴 System

ToString() 공개 메소드

Returns a string that represents the current object.
public ToString ( ) : string
리턴 string