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
|
|||
|
}
|
|||
|
}
|