Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // 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; } } } } // 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
- ZipFileInfo.cs
- NamedPipeDuplicateContext.cs
- AuthStoreRoleProvider.cs
- TypeInitializationException.cs
- AddValidationError.cs
- SqlNotificationRequest.cs
- ComNativeDescriptor.cs
- WebPartCancelEventArgs.cs
- WebPartPersonalization.cs
- DataGridViewTopLeftHeaderCell.cs
- GAC.cs
- TextTreeInsertUndoUnit.cs
- BordersPage.cs
- MetadataCache.cs
- DayRenderEvent.cs
- TrackingStringDictionary.cs
- MenuItemBindingCollection.cs
- CodeArrayIndexerExpression.cs
- UniformGrid.cs
- Configuration.cs
- DbDataRecord.cs
- ConsoleKeyInfo.cs
- GB18030Encoding.cs
- TableCell.cs
- PlanCompilerUtil.cs
- FontClient.cs
- FusionWrap.cs
- UserControl.cs
- pingexception.cs
- GeneralTransform3DGroup.cs
- TypeRestriction.cs
- RenderData.cs
- Binding.cs
- ZoneIdentityPermission.cs
- ServiceHostingEnvironment.cs
- HttpListenerPrefixCollection.cs
- RoutedEvent.cs
- InvalidPrinterException.cs
- SrgsElementFactory.cs
- RequestCachePolicyConverter.cs
- DefaultMemberAttribute.cs
- BaseParser.cs
- figurelength.cs
- NumberFormatter.cs
- ServiceOperationUIEditor.cs
- EventLogEntryCollection.cs
- CheckableControlBaseAdapter.cs
- CodePageUtils.cs
- ActiveXHost.cs
- UIElement3D.cs
- GridSplitterAutomationPeer.cs
- NativeMethods.cs
- Baml6ConstructorInfo.cs
- InputReportEventArgs.cs
- PropertyItem.cs
- DBConcurrencyException.cs
- CrossSiteScriptingValidation.cs
- ActivationServices.cs
- SystemEvents.cs
- DockPatternIdentifiers.cs
- DataContractSerializerServiceBehavior.cs
- EdmItemCollection.cs
- SiteMapPath.cs
- ButtonColumn.cs
- Utility.cs
- OpCodes.cs
- MultipleViewPatternIdentifiers.cs
- PropertyPanel.cs
- DateTimeConverter2.cs
- XmlFormatWriterGenerator.cs
- CodeRegionDirective.cs
- VariableAction.cs
- ScriptingProfileServiceSection.cs
- LazyTextWriterCreator.cs
- CheckPair.cs
- ProcessManager.cs
- ElementMarkupObject.cs
- LambdaCompiler.Statements.cs
- RawStylusInputReport.cs
- SizeValueSerializer.cs
- HwndMouseInputProvider.cs
- WebBrowserNavigatedEventHandler.cs
- assemblycache.cs
- TransformGroup.cs
- DataControlPagerLinkButton.cs
- TransactionBehavior.cs
- XslNumber.cs
- KnowledgeBase.cs
- MdiWindowListStrip.cs
- BatchStream.cs
- ParameterRefs.cs
- SoapTransportImporter.cs
- GridItem.cs
- SystemPens.cs
- entitydatasourceentitysetnameconverter.cs
- XmlSchemaRedefine.cs
- SQLInt32.cs
- CryptoHandle.cs
- ChtmlCommandAdapter.cs
- VirtualDirectoryMapping.cs