RemoteServiceConnectionInfo.RequestId Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the ID assigned to the service request that this instance is in response to.
public:
property Nullable<Guid> RequestId { Nullable<Guid> get(); void set(Nullable<Guid> value); };
public Guid? RequestId { get; set; }
public Guid? RequestId { [System.Runtime.CompilerServices.IsReadOnly] get; set; }
member this.RequestId : Nullable<Guid> with get, set
[<get: System.Runtime.CompilerServices.IsReadOnly>]
member this.RequestId : Nullable<Guid> with get, set
Public Property RequestId As Nullable(Of Guid)
Property Value
- Attributes
Remarks
This value is useful when canceling this service request without connecting to it. If null, no resources are allocated for this service prior to the client connecting to it, and thus no resources need to be released if the client decides not to connect.