Esempio n. 1
0
        public SubstSink(IMiniStreamSink dest, SubstStyles styles) : base(dest)
        {
            if ((int)styles == 0)
            {
                throw new ArgumentException("Can't have empty substitution style");
            }

            this.styles = styles;
        }
Esempio n. 2
0
 public SubstSink(SubstStyles styles) : this(null, styles)
 {
 }
Esempio n. 3
0
		public SubstSink (SubstStyles styles) : this (null, styles) {}
Esempio n. 4
0
		public SubstSink (IMiniStreamSink dest, SubstStyles styles) : base (dest) {
			if ((int) styles == 0)
				throw new ArgumentException ("Can't have empty substitution style");

			this.styles = styles;
		}