BuildUri Class

 

Represents an activity to build a URI.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Inheritance Hierarchy

System.Object
  System.Activities.Activity
    System.Activities.ActivityWithResult
      System.Activities.Activity<TResult>
        System.Activities.CodeActivity<TResult>
          Microsoft.Activities.BuildUri

Syntax

public sealed class BuildUri : CodeActivity<string>
public ref class BuildUri sealed : CodeActivity<String^>
[<Sealed>]
type BuildUri = 
    class
        inherit CodeActivity<string>
    end
Public NotInheritable Class BuildUri
    Inherits CodeActivity(Of String)

Constructors

Name Description
System_CAPS_pubmethod BuildUri()

Initializes a new instance of the BuildUri class with default values.

System_CAPS_pubmethod BuildUri(InArgument<String>)

Initializes a new instance of the BuildUri class with source value.

Properties

Name Description
System_CAPS_protproperty CacheId

(Inherited from Activity.)

System_CAPS_pubproperty DisplayName

(Inherited from Activity.)

System_CAPS_pubproperty Fragment

Gets the escaped URI fragment.

System_CAPS_pubproperty Host

Gets the host component of this instance.

System_CAPS_pubproperty Id

(Inherited from Activity.)

System_CAPS_protproperty ImplementationVersion

(Inherited from CodeActivity<TResult>.)

System_CAPS_pubproperty Path

Gets the absolute path of the URI.

System_CAPS_pubproperty Port

Gets the port number of this URI.

System_CAPS_pubproperty Query

Gets any query information included in the specified URI.

System_CAPS_pubproperty Result

(Inherited from Activity<TResult>.)

System_CAPS_pubproperty ResultType

(Inherited from ActivityWithResult.)

System_CAPS_pubproperty Scheme

Gets the scheme name for this URI.

System_CAPS_pubproperty Source

Gets the source for this URI.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Activity.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Activities Namespace

Return to top