Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / ManagedLibraries / Remoting / Services / RemotingClientProxy.cs / 1305376 / RemotingClientProxy.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Runtime.Remoting.Services { using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Reflection; using System.Net; using System.Runtime.Remoting; using System.Runtime.Remoting.Channels; using System.Runtime.Remoting.Channels.Http; using System.Runtime.Remoting.Messaging; using System.Runtime.InteropServices; [ComVisible(true)] public abstract class RemotingClientProxy : Component { protected Type _type; protected Object _tp; protected String _url; protected void ConfigureProxy(Type type, String url) { lock(this) { // Initial URL Address embedded during codegen i.e. SUDSGenerator // User use in stockQuote.Url = "http://............." which reconnects the tp _type = type; this.Url = url; } } protected void ConnectProxy() { lock(this) { _tp = null; _tp = Activator.GetObject(_type, _url); } } //[DefaultValue(false), Description("Enable automatic handling of server redirects.")] public bool AllowAutoRedirect { get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"];} set { ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"] = value;} } //[Browsable(false), Persistable(PersistableSupport.None), Description("The cookies received from the server that will be sent back on requests that match the cookie's path. EnableCookies must be true.")] //public CookieCollection Cookies public Object Cookies { get { return null; } } //[DefaultValue(true), Description("Enables handling of cookies received from the server.")] public bool EnableCookies { get { return false; } set { throw new NotSupportedException(); } } //[DefaultValue(false), Description("Enables pre authentication of the request.")] public bool PreAuthenticate { get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"];} set { ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"] = value;} } //[DefaultValue(""), RecommendedAsConfigurable(true), Description("The base URL to the server to use for requests.")] public String Path { get { return Url; } set { Url = value; } } //[DefaultValue(-1), RecommendedAsConfigurable(true), Description("Sets the timeout in milliseconds to be used for synchronous calls. The default of -1 means infinite.")] public int Timeout { get { return (int)ChannelServices.GetChannelSinkProperties(_tp)["timeout"];} set { ChannelServices.GetChannelSinkProperties(_tp)["timeout"] = value;} } // //< public String Url { get { //return (String)ChannelServices.GetChannelSinkProperties(_tp)["Url"]; return _url; } set { lock(this) { _url = value; } ConnectProxy(); ChannelServices.GetChannelSinkProperties(_tp)["url"] = value; } } //[Description("Sets the user agent http header for the request.")] public String UserAgent { get { return HttpClientTransportSink.UserAgent;} set { throw new NotSupportedException(); } } //[DefaultValue(""), Description("The user name to be sent for basic and digest authentication.")] public String Username { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["username"];} set { ChannelServices.GetChannelSinkProperties(_tp)["username"] = value;} } //[DefaultValue(""), Description("The password to be used for basic and digest authentication.")] public String Password { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["password"];} set { ChannelServices.GetChannelSinkProperties(_tp)["password"] = value;} } //[DefaultValue(""), Description("The domain to be used for basic and digest authentication.")] public String Domain { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["domain"];} set { ChannelServices.GetChannelSinkProperties(_tp)["domain"] = value;} } //[DefaultValue(""), Description("The name of the proxy server to use for requests.")] public String ProxyName { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["proxyname"];} set { ChannelServices.GetChannelSinkProperties(_tp)["Proxyname"] = value;} } //[DefaultValue(80), Description("The port number of the proxy server to use for requests.")] public int ProxyPort { get { return(int)ChannelServices.GetChannelSinkProperties(_tp)["proxyport"];} set { ChannelServices.GetChannelSinkProperties(_tp)["proxyport"] = value;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Runtime.Remoting.Services { using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Reflection; using System.Net; using System.Runtime.Remoting; using System.Runtime.Remoting.Channels; using System.Runtime.Remoting.Channels.Http; using System.Runtime.Remoting.Messaging; using System.Runtime.InteropServices; [ComVisible(true)] public abstract class RemotingClientProxy : Component { protected Type _type; protected Object _tp; protected String _url; protected void ConfigureProxy(Type type, String url) { lock(this) { // Initial URL Address embedded during codegen i.e. SUDSGenerator // User use in stockQuote.Url = "http://............." which reconnects the tp _type = type; this.Url = url; } } protected void ConnectProxy() { lock(this) { _tp = null; _tp = Activator.GetObject(_type, _url); } } //[DefaultValue(false), Description("Enable automatic handling of server redirects.")] public bool AllowAutoRedirect { get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"];} set { ChannelServices.GetChannelSinkProperties(_tp)["allowautoredirect"] = value;} } //[Browsable(false), Persistable(PersistableSupport.None), Description("The cookies received from the server that will be sent back on requests that match the cookie's path. EnableCookies must be true.")] //public CookieCollection Cookies public Object Cookies { get { return null; } } //[DefaultValue(true), Description("Enables handling of cookies received from the server.")] public bool EnableCookies { get { return false; } set { throw new NotSupportedException(); } } //[DefaultValue(false), Description("Enables pre authentication of the request.")] public bool PreAuthenticate { get { return(bool)ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"];} set { ChannelServices.GetChannelSinkProperties(_tp)["preauthenticate"] = value;} } //[DefaultValue(""), RecommendedAsConfigurable(true), Description("The base URL to the server to use for requests.")] public String Path { get { return Url; } set { Url = value; } } //[DefaultValue(-1), RecommendedAsConfigurable(true), Description("Sets the timeout in milliseconds to be used for synchronous calls. The default of -1 means infinite.")] public int Timeout { get { return (int)ChannelServices.GetChannelSinkProperties(_tp)["timeout"];} set { ChannelServices.GetChannelSinkProperties(_tp)["timeout"] = value;} } // //< public String Url { get { //return (String)ChannelServices.GetChannelSinkProperties(_tp)["Url"]; return _url; } set { lock(this) { _url = value; } ConnectProxy(); ChannelServices.GetChannelSinkProperties(_tp)["url"] = value; } } //[Description("Sets the user agent http header for the request.")] public String UserAgent { get { return HttpClientTransportSink.UserAgent;} set { throw new NotSupportedException(); } } //[DefaultValue(""), Description("The user name to be sent for basic and digest authentication.")] public String Username { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["username"];} set { ChannelServices.GetChannelSinkProperties(_tp)["username"] = value;} } //[DefaultValue(""), Description("The password to be used for basic and digest authentication.")] public String Password { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["password"];} set { ChannelServices.GetChannelSinkProperties(_tp)["password"] = value;} } //[DefaultValue(""), Description("The domain to be used for basic and digest authentication.")] public String Domain { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["domain"];} set { ChannelServices.GetChannelSinkProperties(_tp)["domain"] = value;} } //[DefaultValue(""), Description("The name of the proxy server to use for requests.")] public String ProxyName { get { return(String)ChannelServices.GetChannelSinkProperties(_tp)["proxyname"];} set { ChannelServices.GetChannelSinkProperties(_tp)["Proxyname"] = value;} } //[DefaultValue(80), Description("The port number of the proxy server to use for requests.")] public int ProxyPort { get { return(int)ChannelServices.GetChannelSinkProperties(_tp)["proxyport"];} set { ChannelServices.GetChannelSinkProperties(_tp)["proxyport"] = value;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeLocalAllocation.cs
- JapaneseCalendar.cs
- DrawItemEvent.cs
- WarningException.cs
- PagesChangedEventArgs.cs
- MarkupExtensionParser.cs
- formatter.cs
- QilBinary.cs
- HybridDictionary.cs
- DependencyPropertyKind.cs
- LinqDataSourceView.cs
- ListViewSelectEventArgs.cs
- OrderedDictionary.cs
- SeekableMessageNavigator.cs
- ErrorWebPart.cs
- XmlIgnoreAttribute.cs
- SoapEnumAttribute.cs
- LogRecordSequence.cs
- SecuritySessionSecurityTokenProvider.cs
- BindValidationContext.cs
- BamlCollectionHolder.cs
- CommandField.cs
- SerializableAttribute.cs
- ScriptResourceInfo.cs
- FileUpload.cs
- WebBrowserSiteBase.cs
- ThousandthOfEmRealDoubles.cs
- VisualBrush.cs
- QueryableDataSource.cs
- path.cs
- LastQueryOperator.cs
- FragmentNavigationEventArgs.cs
- AdRotator.cs
- _Semaphore.cs
- OperationCanceledException.cs
- StorageRoot.cs
- MDIClient.cs
- EntityProxyFactory.cs
- SweepDirectionValidation.cs
- KeysConverter.cs
- ServiceBehaviorElement.cs
- XmlnsPrefixAttribute.cs
- SettingsPropertyValueCollection.cs
- ResourceContainer.cs
- sqlnorm.cs
- EntityDataSourceWrapper.cs
- CookieParameter.cs
- DataBindingList.cs
- KeyValueSerializer.cs
- KeyFrames.cs
- CryptoKeySecurity.cs
- unsafenativemethodstextservices.cs
- PagesSection.cs
- HttpCacheVary.cs
- PropertyItem.cs
- DbMetaDataFactory.cs
- oledbmetadatacollectionnames.cs
- FixedTextSelectionProcessor.cs
- DataBoundControlAdapter.cs
- StringUtil.cs
- ReliableSession.cs
- EventTrigger.cs
- DispatcherOperation.cs
- NativeCppClassAttribute.cs
- ThemeInfoAttribute.cs
- RegexRunner.cs
- DPAPIProtectedConfigurationProvider.cs
- ConfigurationManagerHelper.cs
- TreeViewBindingsEditor.cs
- InvokeBase.cs
- ColumnMapCopier.cs
- RevocationPoint.cs
- ParagraphResult.cs
- COM2ColorConverter.cs
- ServiceDescriptionData.cs
- ExceptionRoutedEventArgs.cs
- ModulesEntry.cs
- WinFormsUtils.cs
- AssertFilter.cs
- ThreadStaticAttribute.cs
- RuntimeWrappedException.cs
- ScriptResourceHandler.cs
- SchemaObjectWriter.cs
- AbandonedMutexException.cs
- NotificationContext.cs
- CodeThrowExceptionStatement.cs
- ColorEditor.cs
- PolicyChain.cs
- TraversalRequest.cs
- GestureRecognitionResult.cs
- BufferModeSettings.cs
- CustomSignedXml.cs
- PreservationFileReader.cs
- MarkupCompiler.cs
- PathGradientBrush.cs
- LineServices.cs
- TypeForwardedFromAttribute.cs
- ProfileSection.cs
- WriteTimeStream.cs
- PartialCachingAttribute.cs