Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- documentsequencetextpointer.cs
- StaticFileHandler.cs
- PrePrepareMethodAttribute.cs
- CLRBindingWorker.cs
- Message.cs
- WindowsListViewItem.cs
- ContractCodeDomInfo.cs
- CodeObjectCreateExpression.cs
- DataTable.cs
- SelectedGridItemChangedEvent.cs
- AppDomainFactory.cs
- CookieHandler.cs
- ContentDisposition.cs
- printdlgexmarshaler.cs
- JournalEntry.cs
- ResourceDescriptionAttribute.cs
- DSASignatureFormatter.cs
- ImageBrush.cs
- SqlClientMetaDataCollectionNames.cs
- DataSourceXmlSerializer.cs
- OperationAbortedException.cs
- DetailsViewActionList.cs
- UriWriter.cs
- mactripleDES.cs
- EventHandlersStore.cs
- Semaphore.cs
- ExpandCollapsePatternIdentifiers.cs
- VScrollBar.cs
- InputElement.cs
- HttpCacheParams.cs
- EditingCoordinator.cs
- CompModHelpers.cs
- TextRangeEditTables.cs
- DiscoveryMessageProperty.cs
- ListViewItemSelectionChangedEvent.cs
- LayoutTableCell.cs
- Decorator.cs
- StringResourceManager.cs
- Accessible.cs
- WebPartConnectVerb.cs
- BinaryReader.cs
- TagPrefixCollection.cs
- Oid.cs
- StdValidatorsAndConverters.cs
- CodeConstructor.cs
- XmlSchemaComplexType.cs
- MobileUserControl.cs
- ZipIOCentralDirectoryBlock.cs
- ProcessStartInfo.cs
- PropertyValue.cs
- KeyValuePairs.cs
- _OSSOCK.cs
- PropertyDescriptorCollection.cs
- Triplet.cs
- TransportManager.cs
- GB18030Encoding.cs
- SqlMultiplexer.cs
- ExpressionNode.cs
- RoutedEventValueSerializer.cs
- DataGridViewCellStyleConverter.cs
- CompositeDispatchFormatter.cs
- FilterQueryOptionExpression.cs
- Soap12ServerProtocol.cs
- SafeBitVector32.cs
- XmlName.cs
- EntityProxyFactory.cs
- UniqueIdentifierService.cs
- EventLevel.cs
- InvalidFilterCriteriaException.cs
- CodePageUtils.cs
- Page.cs
- QilGenerator.cs
- ViewCellSlot.cs
- MgmtConfigurationRecord.cs
- RenderData.cs
- ObjectItemCollection.cs
- PasswordTextContainer.cs
- Floater.cs
- keycontainerpermission.cs
- DatePickerTextBox.cs
- RewritingPass.cs
- CodeSnippetStatement.cs
- BufferModeSettings.cs
- NullableFloatMinMaxAggregationOperator.cs
- DictionaryEntry.cs
- BooleanStorage.cs
- NameTable.cs
- ProxyFragment.cs
- PropertyPathConverter.cs
- bidPrivateBase.cs
- DecoderNLS.cs
- BrowsableAttribute.cs
- Menu.cs
- SoapEnumAttribute.cs
- GenericWebPart.cs
- FocusChangedEventArgs.cs
- TextCompositionEventArgs.cs
- DBSchemaTable.cs
- OdbcFactory.cs
- _CacheStreams.cs