e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
27 lines
590 B
C#
27 lines
590 B
C#
namespace System.Web.Routing {
|
|
|
|
// Represents a literal subsegment of a ContentPathSegment
|
|
internal sealed class LiteralSubsegment : PathSubsegment {
|
|
public LiteralSubsegment(string literal) {
|
|
Literal = literal;
|
|
}
|
|
|
|
public string Literal {
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
#if ROUTE_DEBUGGING
|
|
public override string LiteralText {
|
|
get {
|
|
return Literal;
|
|
}
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "\"" + Literal + "\"";
|
|
}
|
|
#endif
|
|
}
|
|
}
|