ServiceDescriptionImportWarnings | serializable |
System.Web.Services.Description (system.web.services.dll) | enum |
This enumeration is used for the return value from the
ServiceDescriptionImporter.Import( ) method. It
can indicate common problems creating the proxy class, including the
failure to create a required or optional
ServiceDescriptionFormatExtension or an
unsupported type of Binding or
Operation.
public enum ServiceDescriptionImportWarnings {
NoCodeGenerated = 1,
OptionalExtensionsIgnored = 2,
RequiredExtensionsIgnored = 4,
UnsupportedOperationsIgnored = 8,
UnsupportedBindingsIgnored = 16,
NoMethodsGenerated = 32
}
Hierarchy
System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable,
System.IConvertible)
ServiceDescriptionImportWarnings
Returned By
ProtocolImporter.Warnings,
ServiceDescriptionImporter.Import( )
Passed To
ProtocolImporter.Warnings
|