System.Xaml.Schema.XamlTypeInvoker.ThrowIfUnknown C# (CSharp) Method

ThrowIfUnknown() private method

private ThrowIfUnknown ( ) : void
return void
		void ThrowIfUnknown ()
		{
			if (type == null || type.UnderlyingType == null)
				throw new NotSupportedException (String.Format ("Current operation is valid only when the underlying type on a XamlType is known, but it is unknown for '{0}'", type));
		}