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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
|
2010-07-30 Atsushi Enomoto <atsushi@ximian.com>
* EndpointCollectionElement.cs,
StandardEndpointCollectionElement.cs,
StandardEndpointElement.cs,
StandardEndpointElementCollection.cs : new 4.0 types.
2010-07-28 Atsushi Enomoto <atsushi@ximian.com>
* CallbackTimeoutsElement.cs
ChannelPoolSettingsElement.cs
ClaimTypeElement.cs
ClientCredentialsElement.cs
ServiceCredentialsElement.cs
ServiceModelExtensionCollectionElement.cs
StandardBindingOptionalReliableSessionElement.cs
StandardBindingReliableSessionElement.cs : couple of API fixes.
* LocalClientSecuritySettingsElement.cs : fixed Properties.
2010-07-27 Atsushi Enomoto <atsushi@ximian.com>
* ClaimTypeElement.cs
ClaimTypeElementCollection.cs
FederatedMessageSecurityOverHttpElement.cs
StandardBindingOptionalReliableSessionElement.cs
StandardBindingReliableSessionElement.cs
WSFederationHttpBindingElement.cs
WSFederationHttpSecurityElement.cs
WSHttpBindingBaseElement.cs : implemented ApplyConfiguration and
add/fix descendants' members.
2010-07-27 Atsushi Enomoto <atsushi@ximian.com>
* FederatedMessageSecurityOverHttpElement.cs : use correct converter.
* WSFederationHttpBindingCollectionElement.cs : remove extra members.
* WSDualHttpBindingElement.cs, WSFederationHttpBindingElement.cs :
fill base properties expectedly.
2010-07-27 Atsushi Enomoto <atsushi@ximian.com>
* WSDualHttpBindingElement.cs, WSFederationHttpBindingElement.cs :
BindingElementType is not a configuration property.
2010-07-27 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs : the error message can be less ambiguous.
2010-07-26 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs, ServiceCredentialsElement.cs :
implement x509 store support.
2010-07-08 Atsushi Enomoto <atsushi@ximian.com>
* ClientCredentialsElement.cs : warning cleanup.
2010-05-31 Atsushi Enomoto <atsushi@ximian.com>
* ClientCredentialsElement.cs, HttpDigestClientElement.cs,
ConfigUtil.cs : implement ClientCredentialsElement.CreateBehavior().
2010-04-05 Atsushi Enomoto <atsushi@ximian.com>
* BaseAddressPrefixFilterElementCollection.cs
BaseAddressPrefixFilterElement.cs : new classes.
* ReliableSessionElement.cs
XmlDictionaryReaderQuotasElement.cs
TextMessageEncodingElement.cs
HostTimeoutsElement.cs
BaseAddressElementCollection.cs
BasicHttpBindingElement.cs
BindingElementExtensionElement.cs
StandardBindingElement.cs
BinaryMessageEncodingElement.cs : added couple of missing stuff.
2010-03-23 Atsushi Enomoto <atsushi@ximian.com>
* ConnectionOrientedTransportElement.cs, StandardBindingElement.cs,
LocalClientSecuritySettingsElement.cs, CustomBindingElement.cs:
add couple of missing methods and TypeConverterAttributes.
2010-03-17 Atsushi Enomoto <atsushi@ximian.com>
* ServiceMetadataPublishingElement.cs : use IsNullOrEmpty(), names
could be "" which is equivalent to null here.
2010-03-17 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs, StandardBindingCollectionElement.cs,
MexHttpsBindingCollectionElement.cs,
MexHttpBindingCollectionElement.cs : use GetDefault() in
BindingCollectionElement to create a Binding, instead of activator
immediately. And for mex bindings, use MetadataExchangeBindings.
2010-03-16 Atsushi Enomoto <atsushi@ximian.com>
* TcpTransportElement.cs
MsmqIntegrationElement.cs
MsmqElementBase.cs
NamedPipeTransportElement.cs
HttpsTransportElement.cs
TransportElement.cs
MsmqTransportElement.cs
HttpTransportElement.cs : implement missing methods.
2010-03-16 Atsushi Enomoto <atsushi@ximian.com>
* IssuedTokenClientElement.cs, MsmqBindingElementBase.cs,
NamedPipeConnectionPoolSettingsElement.cs,
TcpConnectionPoolSettingsElement.cs,
StandardBindingReliableSessionElement.cs,
LocalServiceSecuritySettingsElement.cs : use TimeSpanConverter.
2010-03-15 Atsushi Enomoto <atsushi@ximian.com>
* ServiceDebugElement.cs : binding names could rather be empty.
2010-03-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReaderQuotasElement.cs : add ApplyConfiguration().
* BasicHttpBindingElement.cs : apply transport security part.
Use ReaderQuotas.ApplyConfiguration() for better config application.
* HttpTransportSecurityElement.cs :
Add utility config method. Fix enum default values.
2010-03-08 Atsushi Enomoto <atsushi@ximian.com>
* X509RecipientCertificateServiceElement.cs : remove extra FIXMEs.
* ServiceCredentialsElement.cs : implement CreateBehavior().
2010-03-03 Atsushi Enomoto <atsushi@ximian.com>
* ServiceDebugElement.cs, ServiceMetadataPublishingElement.cs:
add missing members.
2009-10-02 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs : revert the change, to use ServiceHostingEnvironment
internal member again.
2009-10-02 Atsushi Enomoto <atsushi@ximian.com>
* ServiceThrottlingElement.cs : implement CreateBehavior().
2009-10-01 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelExtensionCollectionElement.cs : add couple of missing
members. Implement Reset() to not clean up items (so far it is
hacky workaround).
2009-10-01 Atsushi Enomoto <atsushi@ximian.com>
* ServiceBehaviorElement.cs, EndpointBehaviorElement.cs :
remove extra interfaces.
* ServiceModelEnhancedConfigurationElementCollection.cs :
there is no protected constructor.
* EndpointBehaviorElementCollection.cs :
add ThrowOnDuplicate.
2009-10-01 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelConfigurationElementCollection.cs : implement set[this]
* ServiceBehaviorElementCollection.cs : remove extra members.
2009-09-30 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs : use WeConfigurationManager when it is under
ASP.NET environment.
2009-04-08 Atsushi Enomoto <atsushi@ximian.com>
* IdentityElement.cs, NetPeerTcpBindingElement.cs: implemented
OnApplyConfiguration().
2009-04-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReaderQuotasElement.cs, NetTcpBindingElement.cs:
implement OnApplyConfiguration().
2008-04-22 Igor Zelmanovich <igorz@mainsoft.com>
* ServiceDebugElement.cs:
implement CreateBehavior method.
2008-04-03 Igor Zelmanovich <igorz@mainsoft.com>
* ServiceModelExtensionCollectionElement.cs:
implement this[int index] api.
2008-04-01 Igor Zelmanovich <igorz@mainsoft.com>
* ServiceEndpointElementCollection.cs: fix GetElementKey().
2008-03-31 Vladmir Krasnov <vladmimir@mainsoft.com>
* ConfigUtil.cs: fixed CreateBinding
* BasicHttpBindingElement.cs: OnApplyConfiguration
* StandardBindingElement.cs: implemented ApplyConfiguration
2008-03-27 Igor Zelmanovich <igorz@mainsoft.com>
* XmlElementElementCollection.cs:
* XmlElementElement.cs:
* WSFederationHttpBindingElement.cs:
* WSDualHttpBindingElement.cs:
* WindowsStreamSecurityElement.cs:
* UseManagedPresentationElement.cs:
* TransportElement.cs:
* TransactionFlowElement.cs:
* TextMessageEncodingElement.cs:
* TcpTransportElement.cs:
* TcpConnectionPoolSettingsElement.cs:
* StandardBindingReliableSessionElement.cs:
* SslStreamSecurityElement.cs:
* SecurityElementBase.cs:
* SecurityElement.cs:
* ReliableSessionElement.cs:
* PrivacyNoticeElement.cs:
* PnrpPeerResolverElement.cs:
* PeerTransportElement.cs:
* OneWayElement.cs:
* NetPeerTcpBindingElement.cs:
* NetMsmqBindingElement.cs:
* NamedPipeTransportElement.cs:
* NamedPipeConnectionPoolSettingsElement.cs:
* MtomMessageEncodingElement.cs:
* MsmqTransportElement.cs:
* MsmqIntegrationElement.cs:
* MsmqIntegrationBindingElement.cs:
* MsmqElementBase.cs:
* MsmqBindingElementBase.cs:
* MethodStubs.cs:
* MessageSecurityOverMsmqElement.cs:
* LocalServiceSecuritySettingsElement.cs:
* LocalClientSecuritySettingsElement.cs:
* IssuedTokenParametersEndpointAddressElement.cs:
* IssuedTokenParametersElement.cs:
* IssuedTokenClientElement.cs:
* HttpTransportElement.cs:
* HttpsTransportElement.cs:
* FederatedMessageSecurityOverHttpElement.cs:
* EndpointAddressElementBase.cs:
* ConnectionOrientedTransportElement.cs:
* CompositeDuplexElement.cs:
* ChannelPoolSettingsElement.cs:
fix apis and implementation, make corresponding tests pass
2008-03-27 Igor Zelmanovich <igorz@mainsoft.com>
* IPAddressConverter.cs:
* MessageVersionConverter.cs:
* MessageSecurityVersionConverter.cs:
* ReliableMessagingVersionConverter.cs:
new internal converters used for reading configuration.
2008-03-26 Igor Zelmanovich <igorz@mainsoft.com>
* ServiceModelExtensionCollectionElement.cs:
fix GetEnumerator method.
2008-03-26 Igor Zelmanovich <igorz@mainsoft.com>
* ClientSection.cs: implement InitializeDefaults, refactoring.
* MetadataElement.cs: implement LoadPolicyImporExtensions,
LoasWsdlImportExtensions, refactoring.
* MethodStubs.cs: refactoring.
* PolicyImporterElement.cs: add missing constructors, refactoring.
* PolicyImporterElementCollection.cs: refactoring.
* WsdlImporterElement.cs: add missing constructors, refactoring.
* WsdlImporterElementCollection.cs: refactoring.
2008-03-24 Igor Zelmanovich <igorz@mainsoft.com>
* ExtensionsSection.cs: typo fix.
* MethodStubs.cs: refactoring.
* PolicyVersionConverter.cs: implement ConvertTo method.
* ServiceAuthorizationElement.cs: refactoring.
* ServiceCredentialsElement.cs: fix BehaviorType property, refactoring.
* ServiceDebugElement.cs: fix BehaviorType property, refactoring.
* ServiceSecurityAuditElement.cs: fix BehaviorType property, refactoring.
* ServiceThrottlingElement.cs: fix BehaviorType property, refactoring.
* ServiceTimeoutsElement.cs: fix BehaviorType property, refactoring.
* X509CertificateTrustedIssuerElement.cs: refactoring.
* X509CertificateTrustedIssuerElementCollection.cs: implement GetElementKey.
all changes make corresponding tests pass.
2008-03-04 Eyal Alaluf <eyala@mainsoft.com>
* EndpointBehaviorElement.cs: Add "callbackDebug" behavior element.
* MethodStubs.cs: Fix key calculcation of ChannelEndpointElementCollection.
* NamedServiceModelExtensionCollectionElement.cs: Allow derived classes
to extend the properties of this configuration element.
* ServiceModelExtensionCollectionElement.cs: Implement GetEnumerator.
* ServiceModelConfigurationElementCollection.cs: Implement collection.
2008-03-02 Igor Zelmanovich <igorz@mainsoft.com>
* StandardBindingOptionalReliableSessionElement.cs:
* StandardBindingReliableSessionElement.cs:
fix properties collection initialization.
2008-03-02 Igor Zelmanovich <igorz@mainsoft.com>
* MessageSecurityOverTcpElement.cs:
fix properties collection initialization.
2008-02-19 Igor Zelmanovich <igorz@mainsoft.com>
* BasicHttpBindingElement.cs:
* BindingCollectionElement.cs:
* BindingsSection.cs:
* ChannelEndpointElementCollection.cs:
* MethodStubs.cs:
* MexBindingElement.cs:
* MexHttpBindingElement.cs:
* MexHttpsBindingElement.cs:
* MexNamedPipeBindingElement.cs:
* MexTcpBindingElement.cs:
* MsmqIntegrationBindingElement.cs:
* NetMsmqBindingElement.cs:
* NetNamedPipeBindingElement.cs:
* NetPeerTcpBindingElement.cs:
* NetTcpBindingElement.cs:
* PolicyImporterElementCollection.cs:
* TransactionProtocolConverter.cs
* StandardBindingCollectionElement.cs:
* StandardBindingElement.cs:
* WsdlImporterElementCollection.cs:
* WSDualHttpBindingElement.cs:
* WSFederationHttpBindingElement.cs:
* WSHttpBindingElement.cs:
fix apis and implementation, make corresponding tests pass
2008-02-17 Igor Zelmanovich <igorz@mainsoft.com>
* BasicHttpBindingElement.cs:
* ServiceModelConfigurationElementCollection.cs:
* StandardBindingElement.cs:
* StandardBindingElementCollection.cs:
fixed several bugs, make relevant tests pass.
2008-02-17 Igor Zelmanovich <igorz@mainsoft.com>
* EncodingConverter.cs: added internal class.
* SecurityAlgorithmSuiteConverter.cs: added internal class.
* BasicHttpMessageSecurityElement.cs:
use SecurityAlgorithmSuiteConverter for "algorithmSuite" property.
2008-02-16 Atsushi Enomoto <atsushi@ximian.com>
* MethodStubs.cs : Added CreateBehavior() method in couple of elements.
2007-03-30 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelSectionGroup.cs :
Diagnostic section name is "diagnostics".
2006-10-20 Atsushi Enomoto <atsushi@ximian.com>
* ServiceMetadataPublishingElement.cs : enable gets by default.
* ServiceModelConfigurationElementCollection.cs,
NamedServiceModelExtensionCollectionElement.cs :
cosmetic API fixes.
* MethodStubs.cs : (ServiceBehaviorElementCollection and
ServiceBehaviorElement) override DeserializeElement() to read
individual extension elements (and make some DeserializeElement()
callable).
2006-10-13 Atsushi Enomoto <atsushi@ximian.com>
* MethodStubs.cs : implemented some GetElementKey() implementations.
2006-09-27 Atsushi Enomoto <atsushi@ximian.com>
Replaced Dummy.cs with individual class files:
* MethodStubs.cs : there were some API changes in Sep.CTP.
* Dummy.cs,
AddressHeaderCollectionElement.cs,
AuthorizationPolicyTypeElement.cs,
AuthorizationPolicyTypeElementCollection.cs,
BaseAddressElement.cs,
BaseAddressElementCollection.cs,
BasicHttpBindingCollectionElement.cs,
BasicHttpBindingElement.cs,
BasicHttpMessageSecurityElement.cs,
BasicHttpSecurityElement.cs,
BehaviorsSection.cs,
BinaryMessageEncodingElement.cs,
BindingCollectionElement.cs,
BindingElementExtensionElement.cs,
BindingsSection.cs,
CallbackDebugElement.cs,
CallbackTimeoutsElement.cs,
CertificateElement.cs,
CertificateReferenceElement.cs,
ChannelEndpointElement.cs,
ChannelEndpointElementCollection.cs,
ChannelPoolSettingsElement.cs,
ClaimTypeElement.cs,
ClaimTypeElementCollection.cs,
ClientCredentialsElement.cs,
ClientSection.cs,
ClientViaElement.cs,
ComContractElement.cs,
ComContractElementCollection.cs,
ComContractsSection.cs,
ComMethodElement.cs,
ComMethodElementCollection.cs,
ComPersistableTypeElement.cs,
ComPersistableTypeElementCollection.cs,
ComUdtElement.cs,
ComUdtElementCollection.cs,
CommonBehaviorsSection.cs,
CommonEndpointBehaviorElement.cs,
CommonServiceBehaviorElement.cs,
CompositeDuplexElement.cs,
ConnectionOrientedTransportElement.cs,
CustomBindingCollectionElement.cs,
CustomBindingElement.cs,
CustomBindingElementCollection.cs,
DataContractSerializerElement.cs,
DiagnosticSection.cs,
DnsElement.cs,
EndpointAddressElementBase.cs,
EndpointBehaviorElement.cs,
EndpointBehaviorElementCollection.cs,
ExtensionElement.cs,
ExtensionElementCollection.cs,
ExtensionsSection.cs,
FederatedMessageSecurityOverHttpElement.cs,
HostElement.cs,
HostTimeoutsElement.cs,
HttpDigestClientElement.cs,
HttpTransportElement.cs,
HttpTransportSecurityElement.cs,
HttpsTransportElement.cs,
IdentityElement.cs,
IssuedTokenClientBehaviorsElement.cs,
IssuedTokenClientBehaviorsElementCollection.cs,
IssuedTokenClientElement.cs,
IssuedTokenParametersElement.cs,
IssuedTokenParametersEndpointAddressElement.cs,
IssuedTokenServiceElement.cs,
LocalClientSecuritySettingsElement.cs,
LocalServiceSecuritySettingsElement.cs,
MessageLoggingElement.cs,
MessageSecurityOverHttpElement.cs,
MessageSecurityOverMsmqElement.cs,
MessageSecurityOverTcpElement.cs,
MetadataElement.cs,
MexBindingBindingCollectionElement.cs,
MexBindingElement.cs,
MexHttpBindingCollectionElement.cs,
MexHttpBindingElement.cs,
MexHttpsBindingCollectionElement.cs,
MexHttpsBindingElement.cs,
MexNamedPipeBindingCollectionElement.cs,
MexNamedPipeBindingElement.cs,
MexTcpBindingCollectionElement.cs,
MexTcpBindingElement.cs,
MsmqBindingElementBase.cs,
MsmqElementBase.cs,
MsmqIntegrationBindingCollectionElement.cs,
MsmqIntegrationBindingElement.cs,
MsmqIntegrationElement.cs,
MsmqIntegrationSecurityElement.cs,
MsmqTransportElement.cs,
MsmqTransportSecurityElement.cs,
MtomMessageEncodingElement.cs,
NamedPipeConnectionPoolSettingsElement.cs,
NamedPipeTransportElement.cs,
NamedPipeTransportSecurityElement.cs,
NamedServiceModelExtensionCollectionElement.cs,
NetMsmqBindingCollectionElement.cs,
NetMsmqBindingElement.cs,
NetMsmqSecurityElement.cs,
NetNamedPipeBindingCollectionElement.cs,
NetNamedPipeBindingElement.cs,
NetNamedPipeSecurityElement.cs,
NetPeerTcpBindingCollectionElement.cs,
NetPeerTcpBindingElement.cs,
NetTcpBindingCollectionElement.cs,
NetTcpBindingElement.cs,
NetTcpSecurityElement.cs,
NonDualMessageSecurityOverHttpElement.cs,
OneWayElement.cs,
PeerCredentialElement.cs,
PeerCustomResolverElement.cs,
PeerResolverElement.cs,
PeerSecurityElement.cs,
PeerTransportElement.cs,
PeerTransportSecurityElement.cs,
PnrpPeerResolverElement.cs,
PolicyImporterElement.cs,
PolicyImporterElementCollection.cs,
PrivacyNoticeElement.cs,
ReliableSessionElement.cs,
RsaElement.cs,
SecureConversationServiceElement.cs,
SecurityElement.cs,
SecurityElementBase.cs,
ServiceAuthorizationElement.cs,
ServiceBehaviorElement.cs,
ServiceBehaviorElementCollection.cs,
ServiceCredentialsElement.cs,
ServiceDebugElement.cs,
ServiceElement.cs,
ServiceElementCollection.cs,
ServiceEndpointElement.cs,
ServiceEndpointElementCollection.cs,
ServiceHostingEnvironmentSection.cs,
ServiceMetadataPublishingElement.cs,
ServiceModelEnhancedConfigurationElementCollection.cs,
ServiceModelExtensionElement.cs,
ServicePrincipalNameElement.cs,
ServiceSecurityAuditElement.cs,
ServiceThrottlingElement.cs,
ServiceTimeoutsElement.cs,
ServicesSection.cs,
SslStreamSecurityElement.cs,
StandardBindingCollectionElement.cs,
StandardBindingElement.cs,
StandardBindingElementCollection.cs,
StandardBindingOptionalReliableSessionElement.cs,
StandardBindingReliableSessionElement.cs,
SynchronousReceiveElement.cs,
TcpConnectionPoolSettingsElement.cs,
TcpTransportElement.cs,
TcpTransportSecurityElement.cs,
TextMessageEncodingElement.cs,
TransactedBatchingElement.cs,
TransactionFlowElement.cs,
TransportConfigurationTypeElement.cs,
TransportConfigurationTypeElementCollection.cs,
TransportElement.cs,
UseManagedPresentationElement.cs,
UserNameServiceElement.cs,
UserPrincipalNameElement.cs,
WSDualHttpBindingCollectionElement.cs,
WSDualHttpBindingElement.cs,
WSDualHttpSecurityElement.cs,
WSFederationHttpBindingCollectionElement.cs,
WSFederationHttpBindingElement.cs,
WSFederationHttpSecurityElement.cs,
WSHttpBindingBaseElement.cs,
WSHttpBindingCollectionElement.cs,
WSHttpBindingElement.cs,
WSHttpSecurityElement.cs,
WSHttpTransportSecurityElement.cs,
WindowsClientElement.cs,
WindowsServiceElement.cs,
WindowsStreamSecurityElement.cs,
WsdlImporterElement.cs,
WsdlImporterElementCollection.cs,
X509CertificateTrustedIssuerElement.cs,
X509CertificateTrustedIssuerElementCollection.cs,
X509ClientCertificateAuthenticationElement.cs,
X509ClientCertificateCredentialsElement.cs,
X509DefaultServiceCertificateElement.cs,
X509InitiatorCertificateClientElement.cs,
X509InitiatorCertificateServiceElement.cs,
X509PeerCertificateAuthenticationElement.cs,
X509PeerCertificateElement.cs,
X509RecipientCertificateClientElement.cs,
X509RecipientCertificateServiceElement.cs,
X509ScopedServiceCertificateElement.cs,
X509ScopedServiceCertificateElementCollection.cs,
X509ServiceCertificateAuthenticationElement.cs,
XPathMessageFilterElement.cs,
XPathMessageFilterElementCollection.cs,
XPathMessageFilterElementComparer.cs,
XmlDictionaryReaderQuotasElement.cs,
XmlElementElement.cs,
XmlElementElementCollection.cs : replaced.
2006-09-05 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs : (config) regenerated.
2006-07-21 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs : regenerated.
2006-06-30 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelEnhancedConfigurationElementCollection.cs :
oops, it is extraneous.
2006-06-30 Atsushi Enomoto <atsushi@ximian.com>
* MethodStubs.cs : several fixes due to the requirements from base
types.
* ServiceModelSectionGroup.cs,
ConfigUtil.cs : Reflect type name changes on properties.
* Dummy.cs : regenerated.
* ServiceModelEnhancedConfigurationElementCollection.cs,
ServiceModelExtensionCollectionElement.cs :
Added new types.
* BindingSectionGroup.cs,
ServiceModelExtensionSectionCollection.cs
StandardBindingSection.cs
NamedServiceModelExtensionSectionCollection.cs
SecuritySectionBase.cs
EndpointAddressElementBase.cs
MsmqSectionBase.cs
ServiceModelBasicMapConfigurationElementCollection.cs
MsmqBindingConfigurationElementBase.cs
StandardBindingConfigurationElementCollection.cs :
Removed old types.
2006-06-29 Atsushi Enomoto <atsushi@ximian.com>
* MethodStubs.cs : some API fixes.
* MsmqTransportSectionBase.cs : removed obsolete type.
2006-06-28 Atsushi Enomoto <atsushi@ximian.com>
* StandardBindingSection.cs : removed ConfiguredBindings from
config properties (it conflicts with Bindings).
* Dummy.cs : regenerated (BindingName is not config property).
* ConfigUtil.cs : add bindingConfiguration parameter to
CreateBinding(). For now comment out ApplyConfiguration().
2006-06-28 Atsushi Enomoto <atsushi@ximian.com>
* BindingsSectionGroup.cs : refresh addition.
* StandardBindingSection.cs : added missing members.
* MethodStubs.cs : removed default constructor which now conflicts
with generated one.
Added missing interface members (since interfaces are written now).
* Dummy.cs : regenerated.
* StandardBindingConfigurationElementCollection.cs :
implemented GetElementKey().
2006-06-27 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs : reverted previous hack.
* MethodStubs.cs : added some BindingType property implementation.
* ServiceModelExtensionSectionCollection.cs : not abstract.
* StandardBindingConfigurationElementCollection.cs :
new missing type.
2006-06-27 Atsushi Enomoto <atsushi@ximian.com>
* BindingsSectionGroup.cs : removed and it is now autogenerated.
* ServiceModelConfigurationElementCollection.cs : some API fixes.
* ServiceModelBasicMapConfigurationElementCollection.cs : ditto.
* MethodStubs.cs : added some missing stuff. Especially, now
GetElementKey() is manually added to all collection types.
* ConfigUtil.cs : hacky Bindings properties.
* Dummy.cs : regenerated.
2006-06-26 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelConfigurationElementCollection.cs :
implemented ElementName.
2006-06-26 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs : regerenerated.
2006-06-26 Atsushi Enomoto <atsushi@ximian.com>
* ConfigUtil.cs : new utility class.
2006-06-26 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelSectionGroup.cs :
* IBindingConfigurationElement.cs : added ApplyConfiguration().
* BindingsSectionGroup.cs : some API fixes. A bit of indexer
implementation.
* ServiceModelConfigurationElementCollection.cs : implemented a bit.
* ServiceModelSectionGroup.cs : implemented.
2006-05-29 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs : regenerated.
2006-05-13 Atsushi Enomoto <atsushi@ximian.com>
* configgen/configgen.cs : changed implementation strategy. Now it
generates code similar to existing Sys.Configuration classes.
* Dummy.cs : regenerated
* ServiceModelExtensionSectionCollection.cs,
StandardBindingSection.cs
AuthenticationMode.cs
IBindingConfigurationElement.cs
SecuritySectionBase.cs
EndpointAddressElementBase.cs
ServiceModelConfigurationElementCollection.cs
ServiceModelBasicMapConfigurationElementCollection.cs
MethodStubs.cs : several API updates.
2006-02-23 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs MethodStubs.cs StandardBindingSection.cs :
Feb. CTP API changes - chapter 1.
2006-02-15 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs : regenerated.
2006-02-02 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelConfigurationElementCollection.cs : signature fix
(in sync with sys.configuration.dll)
2005-11-20 Atsushi Enomoto <atsushi@ximian.com>
* MsmqSectionBase.cs, MsmqTransportSectionBase.cs,
NamedServiceModelExtensionSectionCollection.cs : new in Nov. CTP.
* Dummy.cs, AuthenticationMode.cs :
updated to Nov. CTP.
2005-11-20 Atsushi Enomoto <atsushi@ximian.com>
* Dummy.cs, BindingsSectionGroup.cs :
removed items related to IntermediaryBinding (removed in beta2).
2005-10-19 Atsushi Enomoto <atsushi@ximian.com>
* configgen/configgen.cs : now that bug #76365 is gone, we can use
partial types without problem.
* MethodStubs.cs : thus, new file for partial types to define
methods manually.
* Dummy.cs : regenerated.
2005-10-06 Atsushi Enomoto <atsushi@ximian.com>
* ServicesSection.cs : remove.
Actually autogenerated ServicesSection is better.
* Dummy.cs : regenerated.
2005-10-06 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelConfigurationElementCollection.cs,
StandardBindingSection.cs : added some missing members.
* Dummy.cs : regenereated.
2005-10-06 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelBasicMapConfigurationElementCollection.cs,
ServiceModelExtensionSectionCollection.cs,
StandardBindingSection.cs, MsmqBindingConfigurationElementBase.cs :
new non-autogenerated files.
* Dummy.cs :regenerated.
2005-10-06 Atsushi Enomoto <atsushi@ximian.com>
* EndpointAddressElementBase.cs : new non-autogenerated file.
* Dummy.cs : regenerated.
2005-10-06 Atsushi Enomoto <atsushi@ximian.com>
* ServiceModelConfigurationElementCollection.cs,
IBindingConfigurationElement.cs : new files.
* Dummy.cs : reflecting configgen.exe changes.
2005-10-05 Atsushi Enomoto <atsushi@ximian.com>
* AuthenticationMode.cs : new enum.
* Dummy.cs : autogenerated by configgen.exe.
2005-09-29 Atsushi Enomoto <atsushi@ximian.com>
* BindingsSectionGroup.cs, ServiceModelSectionGroup.cs
ServicesSection.cs : new files.
|