16 references to ServiceDescriptionImportStyle
dotnet-svcutil-lib (16)
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (16)
28
private
ServiceDescriptionImportStyle
_style =
ServiceDescriptionImportStyle
.Client;
70
[DefaultValue(
ServiceDescriptionImportStyle
.Client)]
72
public
ServiceDescriptionImportStyle
Style
209
private string Write2_ServiceDescriptionImportStyle(System.Web.Services.Description.
ServiceDescriptionImportStyle
v)
214
case System.Web.Services.Description.
ServiceDescriptionImportStyle
.@Client: s = @"client"; break;
215
case System.Web.Services.Description.
ServiceDescriptionImportStyle
.@Server: s = @"server"; break;
216
case System.Web.Services.Description.
ServiceDescriptionImportStyle
.@ServerInterface: s = @"serverInterface"; break;
259
if (((System.Web.Services.Description.
ServiceDescriptionImportStyle
)o.@Style) != System.Web.Services.Description.
ServiceDescriptionImportStyle
.@Client)
261
WriteElementString(@"style", @"http://microsoft.com/webReference/", Write2_ServiceDescriptionImportStyle(((System.Web.Services.Description.
ServiceDescriptionImportStyle
)o.@Style)));
311
private System.Web.Services.Description.
ServiceDescriptionImportStyle
Read2_ServiceDescriptionImportStyle(string s)
315
case @"client": return System.Web.Services.Description.
ServiceDescriptionImportStyle
.@Client;
316
case @"server": return System.Web.Services.Description.
ServiceDescriptionImportStyle
.@Server;
317
case @"serverInterface": return System.Web.Services.Description.
ServiceDescriptionImportStyle
.@ServerInterface;
318
default: throw CreateUnknownConstantException(s, typeof(System.Web.Services.Description.
ServiceDescriptionImportStyle
));