Base:
method
GetGuid
System.Data.Common.DbDataReader.GetGuid(System.Int32)
Implemented interface member:
method
GetGuid
System.Data.IDataRecord.GetGuid(System.Int32)
1 override of GetGuid
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (1)
240public override Guid GetGuid(int ordinal) {
25 references to GetGuid
System.Activities.DurableInstancing (13)
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (2)
103Guid instanceId = reader.GetGuid(1); 238Guid key = reader.GetGuid(1);
System\Activities\DurableInstancing\StoreUtilities.cs (11)
62returnValue = new InstanceCollisionException(commandName, reader.GetGuid(1)); 65returnValue = new InstanceLockedException(commandName, reader.GetGuid(1), reader.GetGuid(2), ReadLockOwnerMetadata(reader)); 68returnValue = new InstanceNotReadyException(commandName, reader.GetGuid(1)); 72new InstanceKey(reader.GetGuid(1)), Guid.Empty); 75returnValue = new InstanceKeyNotReadyException(commandName, new InstanceKey(reader.GetGuid(1))); 78returnValue = new InstanceLockLostException(commandName, reader.GetGuid(1)); 81returnValue = new InstanceCompleteException(commandName, reader.GetGuid(1)); 84returnValue = new InstanceKeyCompleteException(commandName, new InstanceKey(reader.GetGuid(1))); 87returnValue = new InstanceLockLostException(commandName, reader.GetGuid(1)); 99returnValue = new InstanceAlreadyLockedToOwnerException(commandName, reader.GetGuid(1), reader.GetInt64(2));
System.Data (2)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
1780SetGuid_Unchecked( sink, setters, i, reader.GetGuid(i) );
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (1)
519handle = reader.GetGuid(1);
System.Web (4)
Security\SQLMembershipProvider.cs (4)
1049Guid userId = reader.GetGuid( 8 ); 1264userId = reader.GetGuid( 9 ); 1403userId = reader.GetGuid( 9 ); 1499userId = reader.GetGuid( 9 );
System.Workflow.Runtime (6)
Tracking\SqlTrackingQuery.cs (2)
135inst.WorkflowInstanceId = reader.GetGuid(1); 141inst.InvokingWorkflowInstanceId = reader.GetGuid(4);
Tracking\SqlTrackingWorkflowInstance.cs (4)
219Guid context = reader.GetGuid(3), parentContext = reader.GetGuid(4); 354Guid context = reader.GetGuid(2), parentContext = reader.GetGuid(3);