Code:
/ FX-1434 / FX-1434 / 1.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
- WindowsFont.cs
- TcpProcessProtocolHandler.cs
- CompilerCollection.cs
- StylusShape.cs
- Renderer.cs
- ServiceObjectContainer.cs
- DriveNotFoundException.cs
- COSERVERINFO.cs
- ConfigXmlText.cs
- SelectionProcessor.cs
- CacheForPrimitiveTypes.cs
- ImageField.cs
- WebPartsPersonalizationAuthorization.cs
- HtmlElementCollection.cs
- FullTextLine.cs
- CqlIdentifiers.cs
- FtpWebRequest.cs
- ColumnClickEvent.cs
- PerformanceCountersElement.cs
- OdbcEnvironmentHandle.cs
- WebRequest.cs
- GeometryCombineModeValidation.cs
- KeyMatchBuilder.cs
- ListViewItem.cs
- XmlLangPropertyAttribute.cs
- SqlRowUpdatingEvent.cs
- SafeNativeMethods.cs
- DecoderReplacementFallback.cs
- UnsafeNativeMethods.cs
- HtmlTableCell.cs
- TextUtf8RawTextWriter.cs
- SQLInt16Storage.cs
- ViewBase.cs
- DynamicRenderer.cs
- Pkcs7Signer.cs
- Span.cs
- HandlerFactoryWrapper.cs
- ListSortDescriptionCollection.cs
- SafeEventLogReadHandle.cs
- ExpressionWriter.cs
- Vector3DKeyFrameCollection.cs
- CompoundFileIOPermission.cs
- Matrix3D.cs
- DataObjectCopyingEventArgs.cs
- SchemaElementLookUpTable.cs
- UserPreferenceChangingEventArgs.cs
- SlotInfo.cs
- ColumnHeader.cs
- SerializationAttributes.cs
- QilUnary.cs
- WebPartEventArgs.cs
- MSHTMLHost.cs
- PageEventArgs.cs
- ContractCodeDomInfo.cs
- ScaleTransform.cs
- sqlcontext.cs
- IncrementalReadDecoders.cs
- LineGeometry.cs
- MetadataSource.cs
- ObjectViewQueryResultData.cs
- TransactionsSectionGroup.cs
- SubMenuStyleCollection.cs
- MessageLogger.cs
- PageRequestManager.cs
- InputLanguageEventArgs.cs
- WorkflowMarkupElementEventArgs.cs
- TextTreeText.cs
- ConfigurationException.cs
- SingleKeyFrameCollection.cs
- WebExceptionStatus.cs
- Point.cs
- FontFamilyConverter.cs
- _AutoWebProxyScriptWrapper.cs
- MgmtConfigurationRecord.cs
- FixedPageProcessor.cs
- Scheduling.cs
- PolicyVersionConverter.cs
- DataViewListener.cs
- QueueSurrogate.cs
- ConfigurationManager.cs
- MemoryMappedViewAccessor.cs
- AncillaryOps.cs
- FlowLayoutPanel.cs
- FontFamilyConverter.cs
- MethodSet.cs
- PeerNodeTraceRecord.cs
- EnvironmentPermission.cs
- HostingEnvironment.cs
- TextBoxView.cs
- FrameworkContentElementAutomationPeer.cs
- PopupRootAutomationPeer.cs
- WebHttpElement.cs
- IChannel.cs
- RequestQueue.cs
- dataSvcMapFileLoader.cs
- SystemNetHelpers.cs
- Misc.cs
- _TransmitFileOverlappedAsyncResult.cs
- NativeMethods.cs
- SecurityKeyType.cs