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
- RegisteredExpandoAttribute.cs
- DateTimePicker.cs
- RequestCachePolicy.cs
- ArrayWithOffset.cs
- X509SecurityTokenProvider.cs
- SqlCommand.cs
- InstalledFontCollection.cs
- ImageAttributes.cs
- WrapperEqualityComparer.cs
- BrowserCapabilitiesFactoryBase.cs
- FrugalList.cs
- SafeNativeMethods.cs
- WsatServiceAddress.cs
- X509CertificateCollection.cs
- RoutedCommand.cs
- InstanceKeyCompleteException.cs
- ToolStripManager.cs
- IndexOutOfRangeException.cs
- RuleConditionDialog.cs
- FixUp.cs
- PropertySourceInfo.cs
- DbSetClause.cs
- XmlSerializerFactory.cs
- TextFormatterHost.cs
- Int32KeyFrameCollection.cs
- ValueConversionAttribute.cs
- WorkflowControlEndpoint.cs
- _CacheStreams.cs
- PermissionRequestEvidence.cs
- Guid.cs
- CryptoApi.cs
- OperatingSystem.cs
- TextSelectionHelper.cs
- GridItemPattern.cs
- CheckBoxField.cs
- XPathEmptyIterator.cs
- FontFamilyValueSerializer.cs
- CommandHelper.cs
- TemplateControlBuildProvider.cs
- ExtractedStateEntry.cs
- figurelengthconverter.cs
- SqlVisitor.cs
- ToolStripContentPanelDesigner.cs
- ExpandoObject.cs
- TextBlock.cs
- FacetEnabledSchemaElement.cs
- EditingMode.cs
- Size3D.cs
- ScriptModule.cs
- GroupLabel.cs
- TextTreeExtractElementUndoUnit.cs
- HttpCapabilitiesEvaluator.cs
- SerializationFieldInfo.cs
- Base64Encoder.cs
- _HeaderInfo.cs
- FrameworkTextComposition.cs
- Substitution.cs
- Speller.cs
- RelationshipConverter.cs
- SoapHeaderAttribute.cs
- RealProxy.cs
- InteropBitmapSource.cs
- PrintDialog.cs
- UnionCqlBlock.cs
- Rect3DConverter.cs
- RedirectionProxy.cs
- LoginUtil.cs
- ApplySecurityAndSendAsyncResult.cs
- FontDialog.cs
- CollectionDataContract.cs
- SymbolType.cs
- SafeWaitHandle.cs
- SQLBoolean.cs
- LoginViewDesigner.cs
- ShaderEffect.cs
- TrackingServices.cs
- PathNode.cs
- InputScopeAttribute.cs
- SearchForVirtualItemEventArgs.cs
- DataGridViewHeaderCell.cs
- TableLayoutPanelCellPosition.cs
- ActionItem.cs
- CodeMemberEvent.cs
- HiddenFieldPageStatePersister.cs
- DBProviderConfigurationHandler.cs
- StringValueSerializer.cs
- Substitution.cs
- LayoutTableCell.cs
- XamlClipboardData.cs
- ValidationErrorEventArgs.cs
- DBNull.cs
- AtomMaterializer.cs
- ConnectionManagementElement.cs
- DataObjectPastingEventArgs.cs
- WaitHandleCannotBeOpenedException.cs
- NumberFormatInfo.cs
- HtmlButton.cs
- ExpandSegment.cs
- SafeLibraryHandle.cs
- ResourceIDHelper.cs