1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
#region Copyright (c) Microsoft Corporation
/// <copyright company='Microsoft Corporation'>
/// Copyright (c) Microsoft Corporation. All Rights Reserved.
/// Information Contained Herein is Proprietary and Confidential.
/// </copyright>
#endregion
using System;
using System.Collections.Generic;
using XmlSerialization = System.Xml.Serialization;
#if WEB_EXTENSIONS_CODE
namespace System.Web.Compilation.WCFModel
#else
namespace Microsoft.VSDesigner.WCFModel
#endif
{
#if WEB_EXTENSIONS_CODE
internal class ClientOptions
#else
[CLSCompliant(true)]
public class ClientOptions
#endif
{
private bool m_GenerateAsynchronousMethods;
private bool m_GenerateTaskBasedAsynchronousMethod;
private bool m_GenerateTaskBasedAsynchronousMethodSpecified;
private bool m_EnableDataBinding;
private List<ReferencedType> m_ExcludedTypeList;
private bool m_ImportXmlTypes;
private bool m_GenerateInternalTypes;
private bool m_GenerateMessageContracts;
private List<NamespaceMapping> m_NamespaceMappingList;
private List<ReferencedCollectionType> m_CollectionMappingList;
private bool m_GenerateSerializableTypes;
private ProxySerializerType m_Serializer;
private bool m_ReferenceAllAssemblies;
private List<ReferencedAssembly> m_ReferencedAssemblyList;
private List<ReferencedType> m_ReferencedDataContractTypeList;
private List<ContractMapping> m_ServiceContractMappingList;
private bool m_UseSerializerForFaults;
private bool m_UseSerializerForFaultsSpecified;
private bool m_Wrapped;
private bool m_WrappedSpecified;
/// <summary>
/// Control whether asynchronous proxy will be generated
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool GenerateAsynchronousMethods
{
get
{
return m_GenerateAsynchronousMethods;
}
set
{
m_GenerateAsynchronousMethods = value;
// GenerateAsynchronousMethods and GenerateTaskBasedAsynchronousMethod are mutually exclusive.
if (GenerateAsynchronousMethods)
{
GenerateTaskBasedAsynchronousMethod = false;
}
}
}
/// <summary>
/// Control whether task-based async operations will be generated
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool GenerateTaskBasedAsynchronousMethod
{
get
{
return m_GenerateTaskBasedAsynchronousMethod;
}
set
{
// In order to maximally keep compatible with Dev10 and previous VS, if GenerateTaskBasedAsynchronousMethod is false,
// we will not persist it.
m_GenerateTaskBasedAsynchronousMethod = value;
m_GenerateTaskBasedAsynchronousMethodSpecified = value;
// GenerateAsynchronousMethods and GenerateTaskBasedAsynchronousMethod are mutually exclusive.
if (GenerateTaskBasedAsynchronousMethod)
{
GenerateAsynchronousMethods = false;
}
}
}
/// <summary>
/// Is GenerateTaskBasedAsynchronousMethod specified?
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlIgnore()]
public bool GenerateTaskBasedAsynchronousMethodSpecified
{
get
{
return m_GenerateTaskBasedAsynchronousMethodSpecified;
}
}
/// <summary>
/// control whether to generate INotifyPropertyChanged interface on data contract types
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool EnableDataBinding
{
get
{
return m_EnableDataBinding;
}
set
{
m_EnableDataBinding = value;
}
}
/// <summary>
/// contains a list of types which will be excluded when the design time tool matches types automatically
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "ExcludedTypes")]
[XmlSerialization.XmlArrayItem("ExcludedType", typeof(ReferencedType))]
public List<ReferencedType> ExcludedTypeList
{
get
{
if (m_ExcludedTypeList == null)
{
m_ExcludedTypeList = new List<ReferencedType>();
}
return m_ExcludedTypeList;
}
}
/// <summary>
/// control whether the data contract serializer should import non-DataContract types as IXmlSerializable types
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool ImportXmlTypes
{
get
{
return m_ImportXmlTypes;
}
set
{
m_ImportXmlTypes = value;
}
}
/// <summary>
/// control whether to generate internal types
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool GenerateInternalTypes
{
get
{
return m_GenerateInternalTypes;
}
set
{
m_GenerateInternalTypes = value;
}
}
/// <summary>
/// control whether to generate message contract types
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool GenerateMessageContracts
{
get
{
return m_GenerateMessageContracts;
}
set
{
m_GenerateMessageContracts = value;
}
}
/// <summary>
/// namespace mapping between metadata namespace and clr namespace
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "NamespaceMappings")]
[XmlSerialization.XmlArrayItem("NamespaceMapping", typeof(NamespaceMapping))]
public List<NamespaceMapping> NamespaceMappingList
{
get
{
if (m_NamespaceMappingList == null)
{
m_NamespaceMappingList = new List<NamespaceMapping>();
}
return m_NamespaceMappingList;
}
}
/// <summary>
/// known collection types which will be used by code generator
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "CollectionMappings")]
[XmlSerialization.XmlArrayItem("CollectionMapping", typeof(ReferencedCollectionType))]
public List<ReferencedCollectionType> CollectionMappingList
{
get
{
if (m_CollectionMappingList == null)
{
m_CollectionMappingList = new List<ReferencedCollectionType>();
}
return m_CollectionMappingList;
}
}
/// <summary>
/// whether class need be marked with Serializable attribute
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool GenerateSerializableTypes
{
get
{
return m_GenerateSerializableTypes;
}
set
{
m_GenerateSerializableTypes = value;
}
}
/// <summary>
/// select serializer between DataContractSerializer or XmlSerializer
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public ProxySerializerType Serializer
{
get
{
return m_Serializer;
}
set
{
m_Serializer = value;
}
}
/// <summary>
/// Control whether or not to UseSerializerForFaults. The System.ServiceModel.FaultImportOptions
/// will set its UseMessageFormat Property using this value.
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool UseSerializerForFaults
{
get
{
if (m_UseSerializerForFaultsSpecified)
{
return m_UseSerializerForFaults;
}
else
{
return false;
}
}
set
{
m_UseSerializerForFaultsSpecified = true;
m_UseSerializerForFaults = value;
}
}
/// <summary>
/// Is UseSerializerForFaults specified?
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlIgnore()]
public bool UseSerializerForFaultsSpecified
{
get
{
return m_UseSerializerForFaultsSpecified;
}
}
/// <summary>
/// Control whether or not to WrappedOption. The System.ServiceModel.Channels.WrappedOption
/// will set its WrappedFlag Property using this value.
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool Wrapped
{
get
{
if (m_WrappedSpecified)
{
return m_Wrapped;
}
else
{
return false;
}
}
set
{
m_WrappedSpecified = true;
m_Wrapped = value;
}
}
/// <summary>
/// Is WrappedOption specified?
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlIgnore()]
public bool WrappedSpecified
{
get
{
return m_WrappedSpecified;
}
}
/// <summary>
/// Whether we will scan all dependent assemblies for type sharing
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlElement()]
public bool ReferenceAllAssemblies
{
get
{
return m_ReferenceAllAssemblies;
}
set
{
m_ReferenceAllAssemblies = value;
}
}
/// <summary>
/// controll DataContract type sharing
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "ReferencedAssemblies")]
[XmlSerialization.XmlArrayItem("ReferencedAssembly", typeof(ReferencedAssembly))]
public List<ReferencedAssembly> ReferencedAssemblyList
{
get
{
if (m_ReferencedAssemblyList == null)
{
m_ReferencedAssemblyList = new List<ReferencedAssembly>();
}
return m_ReferencedAssemblyList;
}
}
/// <summary>
/// controll DataContract type sharing
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "ReferencedDataContractTypes")]
[XmlSerialization.XmlArrayItem("ReferencedDataContractType", typeof(ReferencedType))]
public List<ReferencedType> ReferencedDataContractTypeList
{
get
{
if (m_ReferencedDataContractTypeList == null)
{
m_ReferencedDataContractTypeList = new List<ReferencedType>();
}
return m_ReferencedDataContractTypeList;
}
}
/// <summary>
/// control service contract type sharing
/// </summary>
/// <value></value>
/// <remarks></remarks>
[XmlSerialization.XmlArray(ElementName = "ServiceContractMappings")]
[XmlSerialization.XmlArrayItem("ServiceContractMapping", typeof(ContractMapping))]
public List<ContractMapping> ServiceContractMappingList
{
get
{
if (m_ServiceContractMappingList == null)
{
m_ServiceContractMappingList = new List<ContractMapping>();
}
return m_ServiceContractMappingList;
}
}
/// <summary>
/// Serializer used in proxy generator
/// </summary>
/// <remarks></remarks>
public enum ProxySerializerType
{
[XmlSerialization.XmlEnum(Name = "Auto")]
Auto = 0,
[XmlSerialization.XmlEnum(Name = "DataContractSerializer")]
DataContractSerializer = 1,
[XmlSerialization.XmlEnum(Name = "XmlSerializer")]
XmlSerializer = 2,
}
}
}
|