Base:
12 references to Message
dotnet-svcutil-lib (12)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (1)
414SendValidationEvent(ResXml.Sch_CannotLoadSchemaLocation, schemaLocation, e.Message, e.SourceUri, e.LineNumber, e.LinePosition);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (1)
245SendValidationEventNoThrow(new XmlSchemaException(ResXml.Sch_CannotLoadSchema, new string[] { schemaLocation, e.Message }, e.SourceUri, e.LineNumber, e.LinePosition), XmlSeverityType.Error);
FrameworkFork\Microsoft.Xml\Xml\schema\ValidationEventArgs.cs (1)
51get { return _ex.Message; }
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (1)
354SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { uri, e.Message }, XmlSeverityType.Error);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (2)
359SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { schema.BaseUri.ToString(), e.Message }, e); 1878SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { uri, e.Message }, e);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
746SendValidationEvent(ResXml.Sch_InvalidXsdAttributeDatatypeValue, new string[] { name, e.Message }, XmlSeverityType.Error);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (2)
167SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { BaseUri.AbsoluteUri, e.Message }, XmlSeverityType.Error); 615SendValidationEvent(ResXml.Sch_CannotLoadSchema, new string[] { uri, e.Message }, XmlSeverityType.Error);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (2)
398throw CreateValidationException(e, e.Message); 792throw CreateValidationException(e, e.Message);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (1)
148warning = new MetadataConversionError(string.Format(SRServiceModel.SchemaValidationError, ex.SourceUri, ex.LineNumber, ex.LinePosition, ex.Message));