示例#1
0
 /// <summary>
 /// Copy the current context - used to maintain the schema evaluation context when following 
 /// multiple chains of schema references.
 /// </summary>
 /// <returns>A schema resolver at the same depth as the current resolver.</returns>
 public object Clone()
 {
     var resolver = new SchemaResolver(_serviceDefinition);
     return resolver;
 }
示例#2
0
 /// <summary>
 /// Copy the current context - used to maintain the schema evaluation context when following 
 /// multiple chains of schema references.
 /// </summary>
 /// <returns>A schema resolver at the same depth as the current resolver.</returns>
 public object Clone()
 {
     var resolver = new SchemaResolver(_modeler);
     return resolver;
 }
示例#3
0
        /// <summary>
        /// Copy the current context - used to maintain the schema evaluation context when following
        /// multiple chains of schema references.
        /// </summary>
        /// <returns>A schema resolver at the same depth as the current resolver.</returns>
        public object Clone()
        {
            var resolver = new SchemaResolver(_modeler);

            return(resolver);
        }
示例#4
0
        /// <summary>
        /// Copy the current context - used to maintain the schema evaluation context when following
        /// multiple chains of schema references.
        /// </summary>
        /// <returns>A schema resolver at the same depth as the current resolver.</returns>
        public object Clone()
        {
            var resolver = new SchemaResolver(_serviceDefinition);

            return(resolver);
        }