Shaolinq.SqlDatabaseContextInfoDynamicTypeProvider.GetType C# (CSharp) Method

GetType() public method

public GetType ( System reader ) : Type
reader System
return System.Type
		public Type GetType(System.Xml.XmlReader reader)
		{
			Type type;
			string typeName;

			if (string.IsNullOrEmpty(typeName = reader.GetAttribute("Type")))
			{
				var classPrefix = reader.Name.Replace("-", "");
				var namespaceName = "Shaolinq." + reader.Name.Replace("-", ".");

				typeName = namespaceName + "." + classPrefix + "SqlDatabaseContextInfo";

				type = Type.GetType(typeName, false);

				if (type != null)
				{
					return type;
				}

				typeName = typeName + ", " + namespaceName;

				type = Type.GetType(typeName, false);

				if (type != null)
				{
					return type;
				}

				throw new NotSupportedException($"ContextProviderType: {reader.Name}, tried: {typeName}");
			}
			else
			{
				type = Type.GetType(typeName, false);

				if (type != null)
				{
					return type;
				}

				throw new NotSupportedException($"ContextProviderType: {reader.Name}.  Tried Explicit: {typeName}");
			}
		}
	}

Same methods

SqlDatabaseContextInfoDynamicTypeProvider::GetType ( object instance ) : Type