Esempio n. 1
0
		public RdpDataExcept (RdpDatatype dt, RdpPattern except)
			: base (dt)
		{
			this.except = except;
		}
Esempio n. 2
0
		public RdpValue (RdpDatatype dt, string value)
		{
			this.dt = dt;
			this.value = value;
		}
Esempio n. 3
0
		public RdpData (RdpDatatype dt)
		{
			this.dt = dt;
		}
Esempio n. 4
0
 // datatypeEqual :: Datatype -> String -> Context -> String -> Context -> Bool
 internal static bool DatatypeEqual(RdpDatatype dt, string value1, string value2, XmlReader reader)
 {
     return(dt.IsTypeEqual(value1, value2, reader));
 }
Esempio n. 5
0
        // datatypeAllows :: Datatype -> ParamList -> String -> Context -> Bool

        internal static bool DatatypeAllows(RdpDatatype dt, string value, XmlReader reader)
        {
            return(dt.IsAllowed(value, reader));
        }
Esempio n. 6
0
		// datatypeEqual :: Datatype -> String -> Context -> String -> Context -> Bool
		internal static bool DatatypeEqual (RdpDatatype dt, string value1, string value2, XmlReader reader)
		{
			return dt.IsTypeEqual (value1, value2, reader);
		}
Esempio n. 7
0
		// datatypeAllows :: Datatype -> ParamList -> String -> Context -> Bool

		internal static bool DatatypeAllows (RdpDatatype dt, string value, XmlReader reader)
		{
			return dt.IsAllowed (value, reader);
		}