Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Interop / UserThread.cs / 1305376 / UserThread.cs
namespace System.Web.Services.Interop { using System; using System.Threading; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)] internal class UserThread { internal int pSidBuffer; // byte * to buffer of size dwSidLen. internal int dwSidLen; internal int dwTid; internal UserThread() { pSidBuffer = 0; dwSidLen = 0; dwTid = 0; } public override bool Equals(object obj) { if (! (obj is UserThread)) { return false; } UserThread ut = (UserThread) obj; if (ut.dwTid == this.dwTid && ut.pSidBuffer == this.pSidBuffer && ut.dwSidLen == this.dwSidLen) { return true; } return false; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SecurityHelper.cs
- IdentityHolder.cs
- FlowDocumentScrollViewer.cs
- BCLDebug.cs
- ApplicationHost.cs
- SpellerStatusTable.cs
- Matrix3D.cs
- ListView.cs
- Int32Rect.cs
- PerformanceCounterLib.cs
- DesignerForm.cs
- EncoderBestFitFallback.cs
- CategoryState.cs
- ThreadStateException.cs
- ArglessEventHandlerProxy.cs
- ClaimComparer.cs
- TableItemProviderWrapper.cs
- TextParentUndoUnit.cs
- PathFigure.cs
- WsdlBuildProvider.cs
- BindingFormattingDialog.cs
- ArgumentValue.cs
- DynamicDataManager.cs
- CounterCreationData.cs
- VisualState.cs
- FolderBrowserDialog.cs
- InstanceCreationEditor.cs
- MailAddressParser.cs
- codemethodreferenceexpression.cs
- IndexerReference.cs
- Timer.cs
- LogExtentCollection.cs
- XmlWrappingReader.cs
- ValueType.cs
- ModelUIElement3D.cs
- DesignerAdapterUtil.cs
- Triplet.cs
- DataGridViewRowEventArgs.cs
- ImageEditor.cs
- RuleInfoComparer.cs
- StructuredType.cs
- SqlFacetAttribute.cs
- SqlDataSourceView.cs
- BatchStream.cs
- MessageQueuePermissionEntry.cs
- HierarchicalDataSourceControl.cs
- CatalogZoneAutoFormat.cs
- _ConnectionGroup.cs
- BamlBinaryReader.cs
- ExtendedProperty.cs
- TypeResolvingOptions.cs
- VariableReference.cs
- ProxyGenerator.cs
- HostedBindingBehavior.cs
- BinaryFormatter.cs
- DrawingServices.cs
- CompModSwitches.cs
- WeakReadOnlyCollection.cs
- UnsafeNativeMethods.cs
- ListItemViewAttribute.cs
- PrePrepareMethodAttribute.cs
- SemaphoreSlim.cs
- OleCmdHelper.cs
- oledbconnectionstring.cs
- RouteValueDictionary.cs
- DataServiceRequestOfT.cs
- ListControlBoundActionList.cs
- PathNode.cs
- NameValuePermission.cs
- MouseActionConverter.cs
- PrintDialogDesigner.cs
- SetStoryboardSpeedRatio.cs
- TdsParserSafeHandles.cs
- AssignDesigner.xaml.cs
- WsdlInspector.cs
- ExeConfigurationFileMap.cs
- WorkflowApplicationUnloadedException.cs
- TracePayload.cs
- BindStream.cs
- Table.cs
- DBDataPermissionAttribute.cs
- Panel.cs
- DataGridViewTextBoxCell.cs
- TextFindEngine.cs
- RawStylusInput.cs
- TargetException.cs
- HtmlInputImage.cs
- WebPartConnectionCollection.cs
- WindowsListViewItem.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- XPathNodeInfoAtom.cs
- ObjectViewQueryResultData.cs
- NameService.cs
- BooleanConverter.cs
- OpCellTreeNode.cs
- BinaryExpression.cs
- CheckedListBox.cs
- Privilege.cs
- CodeMethodInvokeExpression.cs
- DataAccessor.cs