123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections;
- namespace URLRewriter.Config
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [Serializable()]
- public class RewriterRuleCollection : CollectionBase
- {
-
-
-
-
- public virtual void Add(RewriterRule r)
- {
- this.InnerList.Add(r);
- }
-
-
-
- public RewriterRule this[int index]
- {
- get
- {
- return (RewriterRule) this.InnerList[index];
- }
- set
- {
- this.InnerList[index] = value;
- }
- }
- }
- }
|