Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- Add.cs
- MyContact.cs
- SelectedDatesCollection.cs
- IndicFontClient.cs
- CommandID.cs
- PageCatalogPartDesigner.cs
- RuleSettingsCollection.cs
- DataGridViewDataErrorEventArgs.cs
- ExecutionContext.cs
- _ConnectOverlappedAsyncResult.cs
- ListViewSortEventArgs.cs
- CollectionChangeEventArgs.cs
- RadioButtonStandardAdapter.cs
- TreeIterators.cs
- UserControlBuildProvider.cs
- CodeGotoStatement.cs
- ManagementNamedValueCollection.cs
- EastAsianLunisolarCalendar.cs
- Utils.cs
- SchemaExporter.cs
- ConfigUtil.cs
- CompoundFileIOPermission.cs
- AutoScrollHelper.cs
- ManagedIStream.cs
- RegexGroupCollection.cs
- _AutoWebProxyScriptHelper.cs
- DesignerUtility.cs
- Util.cs
- CallContext.cs
- TagMapCollection.cs
- InternalCache.cs
- ErrorTableItemStyle.cs
- COAUTHIDENTITY.cs
- ClientScriptManagerWrapper.cs
- PkcsUtils.cs
- FirewallWrapper.cs
- AsyncDataRequest.cs
- CryptoApi.cs
- DrawingCollection.cs
- WindowsNonControl.cs
- WebPartVerbCollection.cs
- Stackframe.cs
- WindowsIdentity.cs
- LocalizationComments.cs
- PerformanceCounterPermissionAttribute.cs
- AttributedMetaModel.cs
- DeflateInput.cs
- DeleteHelper.cs
- MonthCalendar.cs
- WebScriptMetadataMessage.cs
- TimeSpanMinutesConverter.cs
- TransformPatternIdentifiers.cs
- PropertyPath.cs
- ProcessHost.cs
- InternalResources.cs
- HTTPNotFoundHandler.cs
- HwndStylusInputProvider.cs
- DocumentPageView.cs
- HScrollProperties.cs
- Ref.cs
- TableLayoutColumnStyleCollection.cs
- TargetInvocationException.cs
- JournalNavigationScope.cs
- Int64AnimationUsingKeyFrames.cs
- CodeMemberMethod.cs
- ThemeDirectoryCompiler.cs
- TextModifierScope.cs
- XmlMtomReader.cs
- DesignerAttributeInfo.cs
- RelationshipConverter.cs
- PrintPreviewGraphics.cs
- CommentEmitter.cs
- TransportSecurityProtocolFactory.cs
- VisualProxy.cs
- PlainXmlWriter.cs
- HttpPostLocalhostServerProtocol.cs
- CodeTypeReference.cs
- FixedSOMPage.cs
- FileInfo.cs
- BulletDecorator.cs
- TextBox.cs
- NextPreviousPagerField.cs
- OrderedEnumerableRowCollection.cs
- Input.cs
- ListControl.cs
- ExtentJoinTreeNode.cs
- CodeDelegateCreateExpression.cs
- Utilities.cs
- DesignerGenericWebPart.cs
- Int16Storage.cs
- ListViewUpdateEventArgs.cs
- GroupByExpressionRewriter.cs
- OutputBuffer.cs
- AlignmentYValidation.cs
- BaseTemplateParser.cs
- SelectionRangeConverter.cs
- TemplateNameScope.cs
- UnsafeNativeMethods.cs
- RegisteredHiddenField.cs
- CompositeFontParser.cs