| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // PeerCustomResolverSettings.cs
- //
- // Author:
- // Marcos Cobena ([email protected])
- //
- // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
- //
- using System;
- using System.ServiceModel.Channels;
- namespace System.ServiceModel.PeerResolvers
- {
- public class PeerCustomResolverSettings
- {
- EndpointAddress address;
- Binding binding;
- PeerResolver resolver;
-
- public PeerCustomResolverSettings()
- {
- }
-
- [MonoTODO]
- public EndpointAddress Address {
- get { return address; }
- set { address = value; }
- }
-
- [MonoTODO]
- public Binding Binding {
- get { return binding; }
- set { binding = value; }
- }
-
- public bool IsBindingSpecified {
- get { return Binding != null; }
- }
-
- [MonoTODO]
- public PeerResolver Resolver {
- get { return resolver; }
- set { resolver = value; }
- }
- }
- }
|