7 references to MethodName
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (6)
484
else if (provider.
MethodName
== null)
488
if (!CodeGenerator.IsValidLanguageIndependentIdentifier(provider.
MethodName
))
489
throw new ArgumentException(string.Format(ResXml.XmlGetSchemaMethodName, provider.
MethodName
), "MethodName");
491
MethodInfo getMethod = getMethod = type.GetMethod(provider.
MethodName
, /* BindingFlags.DeclaredOnly | */ BindingFlags.Static | BindingFlags.Public, null, new Type[] { typeof(XmlSchemaSet) }, null);
493
throw new InvalidOperationException(string.Format(ResXml.XmlGetSchemaMethodMissing, provider.
MethodName
, typeof(XmlSchemaSet).Name, type.FullName));
496
throw new InvalidOperationException(string.Format(ResXml.XmlGetSchemaMethodReturnType, type.Name, provider.
MethodName
, typeof(XmlSchemaProviderAttribute).Name, typeof(XmlQualifiedName).FullName, typeof(XmlSchemaType).FullName));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaExporter.cs (1)
49
string methodName = provider.
MethodName
;