Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Runtime / Serialization / Formatters / Binary / BinaryMethodMessage.cs / 1 / BinaryMethodMessage.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Runtime.Serialization.Formatters.Binary { using System; using System.Collections; using System.Runtime.Remoting.Messaging; using System.Reflection; [Serializable()] internal sealed class BinaryMethodCallMessage { Object[] _inargs = null; String _methodName = null; String _typeName = null; Object _methodSignature = null; Type[] _instArgs = null; Object[] _args = null; LogicalCallContext _logicalCallContext = null; Object[] _properties = null; internal BinaryMethodCallMessage(String uri, String methodName, String typeName, Type[] instArgs, Object[] args, Object methodSignature, LogicalCallContext callContext, Object[] properties) { _methodName = methodName; _typeName = typeName; //_uri = uri; if (args == null) args = new Object[0]; _inargs = args; _args = args; _instArgs = instArgs; _methodSignature = methodSignature; if (callContext == null) _logicalCallContext = new LogicalCallContext(); else _logicalCallContext = callContext; _properties = properties; } public String MethodName { get {return _methodName;} } public String TypeName { get {return _typeName;} } public Type[] InstantiationArgs { get {return _instArgs;} } public Object MethodSignature { get {return _methodSignature;} } public Object[] Args { get {return _args;} } public LogicalCallContext LogicalCallContext { get {return _logicalCallContext;} } public bool HasProperties { get {return (_properties != null);} } internal void PopulateMessageProperties(IDictionary dict) { foreach (DictionaryEntry de in _properties) { dict[de.Key] = de.Value; } } } [Serializable()] internal class BinaryMethodReturnMessage { Object[] _outargs = null; Exception _exception = null; Object _returnValue = null; Object[] _args = null; LogicalCallContext _logicalCallContext = null; Object[] _properties = null; internal BinaryMethodReturnMessage(Object returnValue, Object[] args, Exception e, LogicalCallContext callContext, Object[] properties) { _returnValue = returnValue; if (args == null) args = new Object[0]; _outargs = args; _args= args; _exception = e; if (callContext == null) _logicalCallContext = new LogicalCallContext(); else _logicalCallContext = callContext; _properties = properties; } public Exception Exception { get {return _exception;} } public Object ReturnValue { get {return _returnValue;} } public Object[] Args { get {return _args;} } public LogicalCallContext LogicalCallContext { get {return _logicalCallContext;} } public bool HasProperties { get {return (_properties != null);} } internal void PopulateMessageProperties(IDictionary dict) { foreach (DictionaryEntry de in _properties) { dict[de.Key] = de.Value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Schema.cs
- AdapterDictionary.cs
- InvalidWMPVersionException.cs
- ExitEventArgs.cs
- ListView.cs
- BlockingCollection.cs
- CalendarDay.cs
- XmlBufferReader.cs
- AggregateException.cs
- IFormattable.cs
- Msmq4PoisonHandler.cs
- FtpRequestCacheValidator.cs
- Avt.cs
- ProtectedConfigurationProviderCollection.cs
- RequestTimeoutManager.cs
- NaturalLanguageHyphenator.cs
- PersonalizationStateQuery.cs
- WindowsFormsSectionHandler.cs
- Help.cs
- ParameterRetriever.cs
- MessageDesigner.cs
- FileDialog.cs
- ListViewTableCell.cs
- DataRecordObjectView.cs
- DataSetUtil.cs
- DynamicQueryableWrapper.cs
- _IPv4Address.cs
- ServiceTimeoutsBehavior.cs
- ProfileService.cs
- _DomainName.cs
- DataGridGeneralPage.cs
- RouteParameter.cs
- ReverseComparer.cs
- OleDbTransaction.cs
- ClientScriptManagerWrapper.cs
- _NtlmClient.cs
- XmlHierarchicalDataSourceView.cs
- Internal.cs
- WindowsGraphics.cs
- CqlLexer.cs
- XmlSchemaValidator.cs
- ValidationHelper.cs
- ProfileGroupSettings.cs
- DbTransaction.cs
- ControlParameter.cs
- DependencyPropertyChangedEventArgs.cs
- BitmapInitialize.cs
- AppDomainProtocolHandler.cs
- AppDomainAttributes.cs
- Exceptions.cs
- ControlValuePropertyAttribute.cs
- StrokeNodeData.cs
- RoleBoolean.cs
- TransportChannelListener.cs
- oledbmetadatacollectionnames.cs
- PluggableProtocol.cs
- RadioButtonPopupAdapter.cs
- InputProcessorProfiles.cs
- CompilerCollection.cs
- GetPageNumberCompletedEventArgs.cs
- HMACRIPEMD160.cs
- ParameterBuilder.cs
- FormViewDeletedEventArgs.cs
- URLAttribute.cs
- PlainXmlDeserializer.cs
- XmlArrayItemAttribute.cs
- TargetParameterCountException.cs
- GreaterThanOrEqual.cs
- UIPermission.cs
- MSAAEventDispatcher.cs
- ProfilePropertyMetadata.cs
- WaitingCursor.cs
- XpsDigitalSignature.cs
- WinEventHandler.cs
- Transform3D.cs
- HandlerFactoryCache.cs
- AttributeSetAction.cs
- DispatchWrapper.cs
- AuthenticatingEventArgs.cs
- StateRuntime.cs
- CounterSampleCalculator.cs
- FieldDescriptor.cs
- CallbackHandler.cs
- ValidationPropertyAttribute.cs
- TemplateApplicationHelper.cs
- DecoderReplacementFallback.cs
- CodeGen.cs
- SocketCache.cs
- EdmRelationshipRoleAttribute.cs
- PenThreadWorker.cs
- TableCellCollection.cs
- DataGridViewToolTip.cs
- ItemList.cs
- Enum.cs
- NotImplementedException.cs
- FixUp.cs
- BoundingRectTracker.cs
- FixedSOMTable.cs
- DeploymentSection.cs
- AbstractDataSvcMapFileLoader.cs